UNPKG

@eclipse-scout/core

Version:
17 lines 596 B
import { Cell, LookupRow, ObjectModel, ObjectModelWithId, ObjectOrModel, Primitive, Table, TableRow } from '../index'; export interface TableRowModel extends ObjectModel<TableRow>, ObjectModelWithId { parent?: Table; /** * {@link Cell} instances or cell values. */ cells?: (Primitive | object | Cell)[]; checked?: boolean; enabled?: boolean; iconId?: string; cssClass?: string; parentRow?: string | ObjectOrModel<TableRow>; expanded?: boolean; lookupRow?: LookupRow<any>; [property: string]: any; } //# sourceMappingURL=TableRowModel.d.ts.map