UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

3 lines (2 loc) 211 B
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>;