| 1234567891011 |
- import { ExpressionNode } from '@vue/compiler-core';
- import { TemplateCompilerOptions } from './options';
- import { TransformContext } from './transform';
- import { CompilerError } from './errors';
- export declare const __DEV__ = true;
- export declare const __BROWSER__ = false;
- export declare const __COMPAT__ = false;
- export declare function genRenderFunctionDecl({ className, }: TemplateCompilerOptions): string;
- export declare function rewriteObjectExpression(exp: ExpressionNode, context: TransformContext): import("@vue/compiler-core").SimpleExpressionNode | undefined;
- export declare function onCompilerError(error: CompilerError): void;
- export declare function addEasyComponentAutoImports(easyComponentAutoImports: Record<string, [string, string]>, rootDir: string, tagName: string, fileName: string): void;
|