Interface ListItem

A map of items (key/value -> label} for a ListSelector in a ListSelectorConfig.

interface ListItem {
    ariaLabel?: string;
    key: string;
    label: LocalizableText;
    sortedInsert?: boolean;
}

Properties

ariaLabel?: string
key: string
sortedInsert?: boolean