fix(types): missing client on subscribe

This commit is contained in:
Guillaume Chau
2019-09-13 01:24:44 +02:00
parent a1f9ebc781
commit fdf3e51ef1
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -79,6 +79,7 @@ interface VueApolloSubscribeToMoreOptions extends SubscribeToMoreOptions {
interface VueApolloSubscriptionDefinition extends SubscriptionOptions {
variables?: QueryVariables
client?: string
}
export type VueApolloSubscriptionProperty =
+2 -1
View File
@@ -148,7 +148,8 @@ export const hey = Vue.extend({
return {
foo: this.meow
}
}
},
client: 'foo'
}
}
},