You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
582 B
13 lines
582 B
import { CodegenRootNode, CompilerOptions } from './options'; |
|
import { DirectiveTransform, NodeTransform } from './transform'; |
|
export type TransformPreset = [ |
|
NodeTransform[], |
|
Record<string, DirectiveTransform> |
|
]; |
|
export declare function getBaseTransformPreset({ prefixIdentifiers, skipTransformIdentifier, }: { |
|
prefixIdentifiers: boolean; |
|
skipTransformIdentifier: boolean; |
|
}): TransformPreset; |
|
export declare function baseCompile(template: string, options?: CompilerOptions): Omit<import("@vue/compiler-core").CodegenResult, "ast"> & { |
|
ast: CodegenRootNode; |
|
};
|
|
|