import { Cell, LookupRow, ObjectModel, ObjectModelWithId, ObjectOrModel, Primitive, Table, TableRow, TableRowDropTypesDo } from '../index'; export interface TableRowModel extends ObjectModel, ObjectModelWithId { parent?: Table; /** * {@link Cell} instances or cell values. */ cells?: (Primitive | object | Cell)[]; checked?: boolean; enabled?: boolean; iconId?: string; cssClass?: string; parentRow?: string | ObjectOrModel; expanded?: boolean; lookupRow?: LookupRow; /** * Specifies whether this row can be dragged with the mouse. Only has an effect if {@link Table.rowsDraggable} is true. * * Default is true. */ draggable?: boolean; /** * Specifies if another row can be dropped before, after or onto this row. Only has an effect if {@link Table.rowsDraggable} is true. * * Default is {@link TableRowDropType#ALLOWED} for all positions. */ dropTypes?: TableRowDropTypesDo; [property: string]: any; } //# sourceMappingURL=TableRowModel.d.ts.map