Erster Commit
This commit is contained in:
17
node_modules/ts-edifact/lib/edi/uneceDomHandler.d.ts
generated
vendored
Normal file
17
node_modules/ts-edifact/lib/edi/uneceDomHandler.d.ts
generated
vendored
Normal 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
|
||||
Reference in New Issue
Block a user