unis_crm/frontend1/node_modules/antd/lib/table/hooks/useLazyKVMap.d.ts

5 lines
334 B
TypeScript
Raw Normal View History

2026-03-26 09:29:55 +00:00
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;