保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 26a09f08cf1ed43c640879f23fdad56c5c9282f7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
interface Position {
    offset: number;
    line: number;
    column: number;
}
interface SourceLocation {
    start: Position;
    end: Position;
    source: string;
}
export interface SFCBlock {
    type: string;
    content: string;
    attrs: Record<string, string | true>;
    loc: SourceLocation;
    lang?: string;
    src?: string;
}
interface SFCDescriptor {
    filename: string;
    template: SFCBlock | null;
    script: SFCBlock | null;
    styles: SFCBlock[];
    customBlocks: SFCBlock[];
}
interface CompilerError extends SyntaxError {
    code: number;
    loc?: SourceLocation;
}
interface SFCParseResult {
    descriptor: SFCDescriptor;
    errors: CompilerError[];
}
export interface VueTemplateCompilerV3 {
    parse(template: string, options?: any): SFCParseResult;
}
export {};