ether-admin/node_modules/ant-design-vue/lib/table/hooks/useLazyKVMap.d.ts

4 lines
279 B
TypeScript

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