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]

number, null

Id of the entry

text

string, number, boolean, null

Display text of the entry

value [optional]

any, null

Value of the entry

category[optional]

string, null

Category of the entry (from version 1.12.744)

ListItem 1:

Available from 1.8