EASYAIuniappNewUI/node_modules/licia/parseHtml.d.ts
2025-02-08 18:50:38 +08:00

12 lines
283 B
TypeScript

declare function parseHtml(
html: string,
handlers: {
start?: (tag: string, attrs: any, unary: boolean) => void;
end?: (tag: string) => void;
comment?: (text: string) => void;
text?: (text: string) => void;
}
): void;
export = parseHtml;