We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0295fc8 commit fb13264Copy full SHA for fb13264
src/core/types.ts
@@ -1,4 +1,4 @@
1
-import { DeepReadonly, Ref, UnwrapNestedRefs } from 'vue-demi'
+import { Ref, UnwrapNestedRefs } from 'vue-demi'
2
3
export type ConditionsType = {
4
[key: string]: any
@@ -67,7 +67,7 @@ export interface UseConditionWatcherReturn<Result, Cond> {
67
conditions: UnwrapNestedRefs<Cond>
68
readonly isFetching: Ref<boolean>
69
readonly loading: Ref<boolean>
70
- readonly data: DeepReadonly<Ref<Result | undefined>>
+ readonly data: Readonly<Ref<Result | undefined>>
71
readonly error: Ref<any | undefined>
72
execute: (throwOnFailed?: boolean) => void
73
mutate: Mutate
0 commit comments