UNPKG

@aplus-frontend/antdv

Version:

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

4 lines (3 loc) 184 B
import type { ComputedRef } from 'vue'; export declare type ComputedGetter<T> = (...args: any[]) => T; export default function eagerComputed<T>(fn: ComputedGetter<T>): ComputedRef<T>;