Skip to content

Commit

Permalink
fix(vue): fix variables typing (wip)
Browse files Browse the repository at this point in the history
  • Loading branch information
arkandias committed Jan 7, 2025
1 parent eb19045 commit 3a2fed4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vue-urql/src/useQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export type UseQueryArgs<
* documentation on the `pause` option.
*/
pause?: MaybeRef<boolean>;
} & MaybeRefObj<GraphQLRequestParams<Data, MaybeRefObj<Variables>>>;
} & MaybeRefObj<GraphQLRequestParams<Data, Variables>>;

/** State of the current query, your {@link useQuery} function is executing.
*
Expand Down

0 comments on commit 3a2fed4

Please sign in to comment.