forked from foxbenjaminfox/vue-async-computed
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.d.ts
39 lines (34 loc) · 847 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import Vue, { PluginFunction } from "vue";
export interface IAsyncComputedOptions {
errorHandler?: (error: string[]) => void;
useRawError?: boolean;
default?: any;
}
export default class AsyncComputed {
constructor(options?: IAsyncComputedOptions)
static install: PluginFunction<never>;
static version: string;
}
declare module "vue/types/options" {
interface ComputedOptions<T> {
asynchronous?: (() => T | Promise<T>) | {
get: (() => T | Promise<T>);
default?: T;
lazy?: boolean;
};
}
}
interface IASyncComputedState {
state: "updating" | "success" | "error";
updating: boolean;
success: boolean;
error: boolean;
exception: Error | null;
update: () => void;
}
declare module "vue/types/vue" {
// tslint:disable-next-line:interface-name
interface Vue {
$asyncComputed: {[K: string]: IASyncComputedState };
}
}