Files
2025-08-11 11:51:38 +08:00

7 lines
109 B
TypeScript

declare const html: {
parse(html: string): any[];
stringify(tree: any[]): string;
};
export = html;