@velis/dynamicforms
Version:
Data entry boilerplate components and a RESTful API consumer
14 lines • 598 B
TypeScript
import { DfTable } from '../namespace';
/**
* TableRow contains data for table row columns. Basically object with key(field.name) = value(field data)
* TODO: TableRow is VERY similar to FormPayload object in service it provides. Maybe they should be the same class
* or at least derive from a common ancestor?
*/
export default class TableRow {
[key: string]: any;
dfControlStructure: DfTable.RowControlStructure;
constructor(rowData: DfTable.RowDataInterface);
setMeasuredHeight(value: number): void;
setIsShowing(value: boolean): void;
}
//# sourceMappingURL=row.d.ts.map