From db95e91f07e2d44ec78373560fde2d1ff60d804e Mon Sep 17 00:00:00 2001 From: Kyle Rose Date: Wed, 19 Jun 2019 22:30:40 -0700 Subject: [PATCH] fix(types): add client to mutation options (#644) --- types/options.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/options.d.ts b/types/options.d.ts index 71e4537..5079738 100644 --- a/types/options.d.ts +++ b/types/options.d.ts @@ -48,6 +48,7 @@ export interface VueApolloMutationOptions extends MutationOptions { mutation: DocumentNode; variables?: VariableFn; optimisticResponse?: ((this: ApolloVueThisType) => any) | Object; + client?: String } export interface VueApolloSubscriptionOptions extends SubscriptionOptions {