This commit is contained in:
2025-09-19 14:25:20 +08:00
parent 269893a435
commit fbf3f77229
24949 changed files with 2839404 additions and 0 deletions

28
node_modules/htmlparser2/lib/MultiplexHandler.d.ts generated vendored Normal file
View File

@@ -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