UNPKG

vue-async-computed-decorator

Version:
5 lines (4 loc) 301 B
import { IAsyncComputedValueBase } from "vue-async-computed"; import { VueDecorator } from "vue-class-component"; export declare type IAsyncComputedOptions<T> = IAsyncComputedValueBase<T>; export default function AsyncComputed<TResult>(computedOptions?: IAsyncComputedOptions<TResult>): VueDecorator;