vue-async-computed-decorator
Version:
A vue-class-component decorator for vue-async-computed
5 lines (4 loc) • 301 B
TypeScript
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;