Interface DropdownListOption

interface DropdownListOption {
    id: string;
    label: string;
    selected?: boolean;
    value: string;
}

Properties

Properties

id: string
label: string
selected?: boolean
value: string