txw/local-nodemodules/@gtff/tdesign-gt-vue/vue-route-generator/lib/parse-sfc.d.ts

9 lines
199 B
TypeScript

export interface ParseResult {
customBlocks: CustomBlock[];
}
export interface CustomBlock {
type: string;
content: string;
}
export declare function parseSFC(code: string): ParseResult;