diff --git a/types/options.d.ts b/types/options.d.ts index 60ed725..d4a4f09 100644 --- a/types/options.d.ts +++ b/types/options.d.ts @@ -16,7 +16,7 @@ type Diff = ({ [P in T]: P } & { [P in U type Omit = { [P in Diff]?: T[P] }; type ApolloVueThisType = V & { [key: string]: any }; -type VariableFn = ((this: ApolloVueThisType) => V) | V; +type VariableFn = ((this: ApolloVueThisType) => Object) | Object; type ApolloVueUpdateQueryFn = (this: ApolloVueThisType, previousQueryResult: { [key: string]: any }, options: { error: any, subscriptionData: { data: any; };