minishouyin/node_modules/antd/es/table/hooks/useLazyKVMap.d.ts
2025-11-12 11:35:57 +08:00

5 lines
334 B
TypeScript

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