1
2
3
4
5
6
7
8
9
10
11
12
13
| import { ElementNode, RootNode } from '@vue/compiler-core';
| export declare function parseVueCode(code: string, isNVue?: boolean): {
| code: string;
| files?: undefined;
| errors?: undefined;
| } | {
| code: string;
| files: string[];
| errors: SyntaxError[];
| };
| export declare function parseBlockCode(ast: RootNode, code: string): string;
| export declare function parseWxsNodes(ast: RootNode): ElementNode[];
| export declare function parseWxsCode(wxsNodes: ElementNode[], code: string): string;
|
|