useLazyKVMap.d.ts 334 B

1234
  1. import type { AnyObject } from '../../_util/type';
  2. import type { GetRowKey, Key } from '../interface';
  3. declare const useLazyKVMap: <RecordType extends AnyObject = AnyObject>(data: readonly RecordType[], childrenColumnName: string, getRowKey: GetRowKey<RecordType>) => readonly [(key: Key) => RecordType];
  4. export default useLazyKVMap;