8 lines
387 B
TypeScript
8 lines
387 B
TypeScript
import { Dictionary, SegmentEntry } from "./validator";
|
|
import { TableBuilder } from "./tableBuilder";
|
|
export declare class SegmentTableBuilder extends TableBuilder<SegmentEntry> {
|
|
constructor(type: string);
|
|
static enrichWithDefaultSegments(data: Dictionary<SegmentEntry>): Dictionary<SegmentEntry>;
|
|
build(): Dictionary<SegmentEntry>;
|
|
}
|
|
//# sourceMappingURL=segments.d.ts.map
|