@eclipse-scout/core
Version:
Eclipse Scout runtime
16 lines • 509 B
TypeScript
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