interface FormSelectOption {
    dataset?: Record<string, string>;
    disabled?: boolean;
    group?: string;
    label?: string;
    rule?: boolean;
    selected?: boolean;
    value?: string;
}

Properties

dataset?: Record<string, string>
disabled?: boolean
group?: string
label?: string
rule?: boolean
selected?: boolean
value?: string