interface SelectField {
    label?: string;
    name: string;
    options: undefined | DefaultOptionType[];
    placeholder?: string;
    rule?: FormRule[];
    type: "select";
}

Properties

label?: string
name: string
options: undefined | DefaultOptionType[]
placeholder?: string
rule?: FormRule[]
type: "select"

Generated using TypeDoc