Files
icehrm/web/node_modules/antd/lib/table/hooks/useLazyKVMap.d.ts
2020-05-20 18:47:29 +02:00

4 lines
248 B
TypeScript

import * as React from 'react';
import { GetRowKey } from '../interface';
export default function useLazyKVMap<RecordType>(data: RecordType[], childrenColumnName: string, getRowKey: GetRowKey<RecordType>): ((key: React.ReactText) => RecordType)[];