interface ChoiceInputConfig {
    choices:
        | any[]
        | Record<string | number, any>
        | () => any[] | Record<string | number, any>;
    labelAttr?: string;
    options: FormSelectOption[];
    valueAttr?: string;
}

Properties

choices:
    | any[]
    | Record<string | number, any>
    | () => any[] | Record<string | number, any>
labelAttr?: string
options: FormSelectOption[]
valueAttr?: string