![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/clinic.corals.io/node_modules/htmlparser2/lib/ |
import { Handler } from "./Parser"; /** * Calls a specific handler function for all events that are encountered. * * @param func — The function to multiplex all events to. */ export default class MultiplexHandler implements Handler { _func: (event: keyof Handler, ...args: unknown[]) => void; constructor(func: (event: keyof Handler, ...args: unknown[]) => void); onattribute(name: string, value: string): 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: {}): void; onreset(): void; } //# sourceMappingURL=MultiplexHandler.d.ts.map