src/lib/kiewit-dropdown/kiewit-dropdown.interface.ts
Properties |
| data |
data:
|
Type : any[]
|
| defaultItem |
defaultItem:
|
Type : any
|
| disabled |
disabled:
|
Type : boolean
|
| textField |
textField:
|
Type : string
|
| valueField |
valueField:
|
Type : string
|
export interface IKiewitDropdown {
data: any[],
textField?: string,
valueField?: string,
defaultItem?: any,
disabled?: boolean
}