Interface SelectOption

interface SelectOption {
    description?: string;
    detail?: string;
    disabled?: boolean;
    label?: string;
    markdown?: boolean;
    separator?: boolean;
    userData?: string;
    value?: string;
}

Properties

description?: string
detail?: string
disabled?: boolean
label?: string
markdown?: boolean
separator?: boolean
userData?: string
value?: string