useSearchOptions.d.ts 393 B

1234
  1. import type { DefaultOptionType, InternalFieldNames, ShowSearchType } from '../Cascader';
  2. export declare const SEARCH_MARK = "__rc_cascader_search_mark__";
  3. declare const useSearchOptions: (search: string, options: DefaultOptionType[], fieldNames: InternalFieldNames, prefixCls: string, config: ShowSearchType, enableHalfPath?: boolean) => DefaultOptionType[];
  4. export default useSearchOptions;