ether-admin/node_modules/ant-design-vue/es/_util/eagerComputed.d.ts

4 lines
184 B
TypeScript

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