interface SelectSearchProps {
    options: [string | ObjectOption, ...(string | ObjectOption)[]];
    searchProps?: Omit<SearchProps, "name"> & DevfiveProps;
    selectProps?: Omit<SelectProps<any, ObjectOption>, "options"> & DevfiveProps;
}

Properties

options: [string | ObjectOption, ...(string | ObjectOption)[]]

검색할 대상 속성입니다.

searchProps?: Omit<SearchProps, "name"> & DevfiveProps
selectProps?: Omit<SelectProps<any, ObjectOption>, "options"> & DevfiveProps

Generated using TypeDoc