9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
export interface ParseResult {
|
|
customBlocks: CustomBlock[];
|
|
}
|
|
export interface CustomBlock {
|
|
type: string;
|
|
content: string;
|
|
}
|
|
export declare function parseSFC(code: string): ParseResult;
|