useData.d.ts 339 B

12345
  1. import type { TransferProps } from '..';
  2. import type { AnyObject } from '../../_util/type';
  3. import type { TransferKey } from '../interface';
  4. declare const useData: <RecordType extends AnyObject>(dataSource?: RecordType[], rowKey?: TransferProps<RecordType>["rowKey"], targetKeys?: TransferKey[]) => RecordType[][];
  5. export default useData;