UNPKG

ornamentum

Version:
26 lines (25 loc) 367 B
/** * Dropdown option model. */ export interface DropdownOption { /** * Option identifier. */ id: any; /** * Option index. */ index: number; /** * Option text. */ text: string; /** * Disabled state. */ disabled: boolean; /** * Source option data reference. */ option: any; }