Files
apollo/types/apollo-provider.d.ts
T
Guillaume Chau 97d317e765 fix(ts): typings
2018-09-07 22:36:49 +02:00

12 lines
388 B
TypeScript

/* eslint no-unused-vars: 0 */
import { ApolloClient, ApolloQueryResult } from 'apollo-client'
import Vue, { PluginFunction, AsyncComponent } from 'vue'
import { VueApolloComponentOption } from './options'
export type VueApolloComponent<V extends Vue = Vue> = VueApolloComponentOption<V> | typeof Vue | AsyncComponent;
export class ApolloProvider {
provide: (key?: string) => this
}