ether-admin/node_modules/ant-design-vue/lib/_util/hooks/useMemo.d.ts

3 lines
211 B
TypeScript

import type { Ref, WatchSource } from 'vue';
export default function useMemo<T>(getValue: () => T, condition: (WatchSource<unknown> | object)[], shouldUpdate?: (prev: any[], next: any[]) => boolean): Ref<T, T>;