eagerComputed.d.ts 184 B

123
  1. import type { ComputedRef } from 'vue';
  2. export declare type ComputedGetter<T> = (...args: any[]) => T;
  3. export default function eagerComputed<T>(fn: ComputedGetter<T>): ComputedRef<T>;