Skip to content

Commit 8f9e858

Browse files
committed
2 parents 523e380 + fb13264 commit 8f9e858

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { DeepReadonly, Ref, UnwrapNestedRefs } from 'vue-demi'
1+
import { Ref, UnwrapNestedRefs } from 'vue-demi'
22

33
export type ConditionsType = {
44
[key: string]: any
@@ -67,7 +67,7 @@ export interface UseConditionWatcherReturn<Result, Cond> {
6767
conditions: UnwrapNestedRefs<Cond>
6868
readonly isFetching: Ref<boolean>
6969
readonly loading: Ref<boolean>
70-
readonly data: DeepReadonly<Ref<Result | undefined>>
70+
readonly data: Readonly<Ref<Result | undefined>>
7171
readonly error: Ref<any | undefined>
7272
execute: (throwOnFailed?: boolean) => void
7373
mutate: Mutate

0 commit comments

Comments
 (0)