Files
video-gen/video-gen-admin/node_modules/@rc-component/select/lib/hooks/useOptions.d.ts
T
2026-05-25 17:08:18 +08:00

13 lines
522 B
TypeScript

import * as React from 'react';
import type { FieldNames, RawValueType } from '../Select';
/**
* Parse `children` to `options` if `options` is not provided.
* Then flatten the `options`.
*/
declare const useOptions: <OptionType>(options: OptionType[], children: React.ReactNode, fieldNames: FieldNames, optionFilterProp: string[], optionLabelProp: string) => {
options: OptionType[];
valueOptions: Map<RawValueType, OptionType>;
labelOptions: Map<React.ReactNode, OptionType>;
};
export default useOptions;