minishouyin/node_modules/antd/es/transfer/hooks/useData.d.ts

6 lines
339 B
TypeScript
Raw Permalink Normal View History

2025-11-12 11:35:57 +08:00
import type { TransferProps } from '..';
import type { AnyObject } from '../../_util/type';
import type { TransferKey } from '../interface';
declare const useData: <RecordType extends AnyObject>(dataSource?: RecordType[], rowKey?: TransferProps<RecordType>["rowKey"], targetKeys?: TransferKey[]) => RecordType[][];
export default useData;