There was an error while loading. Please reload this page.
2 parents 9d9f55d + 64671a4 commit 03f7d24Copy full SHA for 03f7d24
types/index.d.ts
@@ -16,7 +16,7 @@ type AsyncComputedGetter<T> = () => Promise<T>;
16
interface IAsyncComputedValue<T> {
17
default?: T | (() => T);
18
get: AsyncComputedGetter<T>;
19
- watch?: () => void;
+ watch?: string[] | (() => void);
20
shouldUpdate?: () => boolean;
21
lazy?: boolean;
22
}
0 commit comments