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.
14 lines
597 B
14 lines
597 B
import type { CodegenRootNode, CompilerOptions } from './options';
|
|
import { type DirectiveTransform, type 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;
|
|
};
|