Erster Commit

This commit is contained in:
zed
2026-03-13 09:53:40 +01:00
commit 5ebcad02ed
3945 changed files with 974582 additions and 0 deletions

17
node_modules/ts-edifact/lib/edi/uneceDomHandler.d.ts generated vendored Normal file
View File

@@ -0,0 +1,17 @@
import { DomHandler, DomHandlerOptions } from "htmlparser2";
import { Node, Element } from "htmlparser2/node_modules/domhandler";
declare type Callback = (error: Error | null, dom: Node[]) => void;
declare type ElementCallback = (element: Element) => void;
export declare abstract class UNECEDomHandler extends DomHandler {
constructor(callback?: Callback | null, options?: DomHandlerOptions | null, elementCB?: ElementCallback);
ontext(data: string): void;
abstract onText(data: string): void;
onopentag(name: string, attribs: {
[key: string]: string;
}): void;
abstract onOpenTag(name: string, attribs: {
[key: string]: string;
}): void;
}
export {};
//# sourceMappingURL=uneceDomHandler.d.ts.map