Erster Commit
This commit is contained in:
15
node_modules/ts-edifact/lib/edi/unecePageParser.d.ts
generated
vendored
Normal file
15
node_modules/ts-edifact/lib/edi/unecePageParser.d.ts
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import { UNECEDomHandler } from "./uneceDomHandler";
|
||||
import { StateMachine, StateMachineDefinition } from "@initics/tsm";
|
||||
import { EdifactMessageSpecification } from "./messageStructureParser";
|
||||
export declare abstract class UNECEPageParser {
|
||||
protected sm: StateMachine;
|
||||
protected _spec?: EdifactMessageSpecification;
|
||||
constructor(smdef: StateMachineDefinition);
|
||||
get spec(): EdifactMessageSpecification;
|
||||
parse(page: string): void;
|
||||
protected setupHandler(): UNECEDomHandler;
|
||||
protected extractTextValue(text: string, regex: RegExp, index?: number): string;
|
||||
protected throwInvalidParserState(state: string): void;
|
||||
protected throwCouldNotParsePage(): void;
|
||||
}
|
||||
//# sourceMappingURL=unecePageParser.d.ts.map
|
||||
Reference in New Issue
Block a user