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