Erster Commit
This commit is contained in:
17
node_modules/ts-edifact/lib/tableBuilder.d.ts
generated
vendored
Normal file
17
node_modules/ts-edifact/lib/tableBuilder.d.ts
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
import { Dictionary } from "./validator";
|
||||
export declare enum Suffix {
|
||||
Elements = "elements",
|
||||
Segments = "segments"
|
||||
}
|
||||
export declare abstract class TableBuilder<T> {
|
||||
private type;
|
||||
private version?;
|
||||
private location?;
|
||||
protected fileSuffix: Suffix;
|
||||
constructor(type: string, suffix: Suffix);
|
||||
forVersion(version: string): TableBuilder<T>;
|
||||
specLocation(location: string): TableBuilder<T>;
|
||||
protected getDefinitionFileLoc(): string | undefined;
|
||||
abstract build(): Dictionary<T>;
|
||||
}
|
||||
//# sourceMappingURL=tableBuilder.d.ts.map
|
||||
Reference in New Issue
Block a user