Files
yusheng-h5/uni_modules/UniDevTools/node_modules/licia/parseHtml.d.ts

12 lines
283 B
TypeScript
Raw Normal View History

2025-08-11 11:06:07 +08:00
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;