useLazyKVMap.d.ts 279 B

123
  1. import type { Ref } from 'vue';
  2. import type { Key, GetRowKey } from '../interface';
  3. export default function useLazyKVMap<RecordType>(dataRef: Ref<readonly RecordType[]>, childrenColumnNameRef: Ref<string>, getRowKeyRef: Ref<GetRowKey<RecordType>>): ((key: Key) => RecordType)[];