aboutsummaryrefslogtreecommitdiff
path: root/node_modules/htmlparser2/lib/MultiplexHandler.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/htmlparser2/lib/MultiplexHandler.d.ts')
-rw-r--r--node_modules/htmlparser2/lib/MultiplexHandler.d.ts28
1 files changed, 28 insertions, 0 deletions
diff --git a/node_modules/htmlparser2/lib/MultiplexHandler.d.ts b/node_modules/htmlparser2/lib/MultiplexHandler.d.ts
new file mode 100644
index 0000000..67cb4d1
--- /dev/null
+++ b/node_modules/htmlparser2/lib/MultiplexHandler.d.ts
@@ -0,0 +1,28 @@
+import type { Parser, Handler } from "./Parser";
+/**
+ * Calls a specific handler function for all events that are encountered.
+ */
+export default class MultiplexHandler implements Handler {
+ private readonly func;
+ /**
+ * @param func The function to multiplex all events to.
+ */
+ constructor(func: (event: keyof Handler, ...args: unknown[]) => void);
+ onattribute(name: string, value: string, quote: string | null | undefined): void;
+ oncdatastart(): void;
+ oncdataend(): void;
+ ontext(text: string): void;
+ onprocessinginstruction(name: string, value: string): void;
+ oncomment(comment: string): void;
+ oncommentend(): void;
+ onclosetag(name: string): void;
+ onopentag(name: string, attribs: {
+ [key: string]: string;
+ }): void;
+ onopentagname(name: string): void;
+ onerror(error: Error): void;
+ onend(): void;
+ onparserinit(parser: Parser): void;
+ onreset(): void;
+}
+//# sourceMappingURL=MultiplexHandler.d.ts.map \ No newline at end of file