File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ export type DecorateProcedure<
58
58
KeyT extends QueryKey = QueryKey ,
59
59
> (
60
60
input : MaybeRefOrGetter < inferProcedureInput < TProcedure > > ,
61
- opts ?: MaybeRef <
61
+ opts ?: MaybeRefOrGetter <
62
62
Omit < UnwrapRef < UseQueryOptions < ResT , DataT > > , 'queryKey' > & {
63
63
trpc ?: TRPCRequestOptions
64
64
queryKey ?: KeyT
@@ -77,9 +77,9 @@ export type DecorateProcedure<
77
77
VariablesT = inferProcedureInput < TProcedure > ,
78
78
ContextT = unknown ,
79
79
> (
80
- opts ?: UseMutationOptions < DataT , DataE , VariablesT , ContextT > & {
80
+ opts ?: MaybeRefOrGetter < UseMutationOptions < DataT , DataE , VariablesT , ContextT > & {
81
81
trpc ?: TRPCRequestOptions
82
- } ,
82
+ } > ,
83
83
) => UseMutationReturnType < DataT , DataE , VariablesT , ContextT >
84
84
}
85
85
: TProcedure extends AnySubscriptionProcedure
You can’t perform that action at this time.
0 commit comments