useMemo.d.ts 208 B

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