UNPKG

ant-design-vue

Version:

An enterprise-class UI design language and Vue-based implementation

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>;