-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathindex.d.ts
47 lines (40 loc) · 1.06 KB
/
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
40
41
42
43
44
45
46
47
import Vue, { PluginFunction } from "vue";
export interface IAsyncComputedOptions {
errorHandler?: (error: string | Error) => void;
useRawError?: boolean;
default?: any;
}
export default class AsyncComputed {
constructor(options?: IAsyncComputedOptions);
static install: PluginFunction<never>;
static version: string;
}
type AsyncComputedGetter<T> = () => Promise<T>;
interface IAsyncComputedValue<T> {
default?: T | (() => T);
get: AsyncComputedGetter<T>;
watch?: () => void;
shouldUpdate?: () => boolean;
lazy?: boolean;
}
interface AsyncComputedObject {
[K: string]: AsyncComputedGetter<any> | IAsyncComputedValue<any>;
}
declare module "vue/types/options" {
interface ComponentOptions<V extends Vue> {
asyncComputed?: AsyncComputedObject;
}
}
interface IASyncComputedState {
state: "updating" | "success" | "error";
updating: boolean;
success: boolean;
error: boolean;
exception: Error | null;
update: () => void;
}
declare module "vue/types/vue" {
interface Vue {
$asyncComputed: { [K: string]: IASyncComputedState };
}
}