A single option in a create-dialog <select>: the stored value and the (already-localized) display label.

interface SubTypeOption {
    label: string;
    value: string;
}

Properties

Properties

label: string

The display label for the option.

value: string

The stored field value.