更新
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user