23 lines
835 B
TypeScript
23 lines
835 B
TypeScript
import { VueTemplateCompiler, VueTemplateCompilerOptions, ErrorWithRange } from './types';
|
|
import { AssetURLOptions } from './templateCompilerModules/assetUrl';
|
|
export interface TemplateCompileOptions {
|
|
source: string;
|
|
filename: string;
|
|
compiler: VueTemplateCompiler;
|
|
compilerOptions?: VueTemplateCompilerOptions;
|
|
transformAssetUrls?: AssetURLOptions | boolean;
|
|
preprocessLang?: string;
|
|
preprocessOptions?: any;
|
|
transpileOptions?: any;
|
|
isProduction?: boolean;
|
|
isFunctional?: boolean;
|
|
optimizeSSR?: boolean;
|
|
prettify?: boolean;
|
|
}
|
|
export interface TemplateCompileResult {
|
|
code: string;
|
|
source: string;
|
|
tips: (string | ErrorWithRange)[];
|
|
errors: (string | ErrorWithRange)[];
|
|
}
|
|
export declare function compileTemplate(options: TemplateCompileOptions): TemplateCompileResult;
|