ListItem
[ Interface ]
export interface ListItem {
id?: number | null;
text: string | number | boolean | null;
value?: any | null;
category?: string | null;
}
Properties
Name | Type | Description |
---|---|---|
id [optional] | Id of the entry | |
text | Display text of the entry | |
value [optional] | Value of the entry | |
category[optional] | Category of the entry (from version 1.12.744) |
Available from 1.8 |