UNPKG

199 BTypeScriptView Raw
1export interface ParseResult {
2 customBlocks: CustomBlock[];
3}
4export interface CustomBlock {
5 type: string;
6 content: string;
7}
8export declare function parseSFC(code: string): ParseResult;