Skip to content

Commit

Permalink
feat(useMutation): export MutationExecutionOptions interface (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaubree authored Dec 16, 2023
1 parent 5a1186b commit cb1f05f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/villus/src/useMutation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { CombinedError } from './utils';
import { Operation, QueryVariables } from '../../shared/src';
import { Client, resolveClient } from './client';

interface MutationExecutionOptions<TData> {
export interface MutationExecutionOptions<TData> {
context: MaybeRef<QueryExecutionContext>;
client?: Client;
clearCacheTags?: string[];
Expand Down

0 comments on commit cb1f05f

Please sign in to comment.