@rangertechnologies/ngnxt
Version:
This library was used for creating dymanic UI based on the input JSON/data
19 lines (18 loc) • 393 B
TypeScript
export declare class TableHeader {
label: string;
fieldName: string;
fieldId: string;
type: string;
isReadOnly: boolean;
}
export declare class TableWrapper {
header: TableHeader[];
data: any[];
tableAppendix: any[];
keyValueField: string;
rowFunction: any;
addRow: boolean;
newRowDefault: any;
tableType: string;
tableHeader: string;
}