UNPKG

@eclipse-scout/core

Version:
16 lines 509 B
import { LookupRow, ObjectModel, ObjectModelWithId } from '../index'; export interface LookupRowModel<Key> extends ObjectModel<LookupRow<Key>>, ObjectModelWithId { key?: Key; text?: string; parentKey?: Key; enabled?: boolean; active?: boolean; additionalTableRowData?: Record<string, any>; cssClass?: string; iconId?: string; tooltipText?: string; backgroundColor?: string; foregroundColor?: string; font?: string; } //# sourceMappingURL=LookupRowModel.d.ts.map