3 lines
223 B
TypeScript
3 lines
223 B
TypeScript
import type { GetRowKey, Key } from '../interface';
|
|
export default function useLazyKVMap<RecordType>(data: readonly RecordType[], childrenColumnName: string, getRowKey: GetRowKey<RecordType>): ((key: Key) => RecordType)[];
|