UNPKG

455 BTypeScriptView Raw
1export * from 'apollo-client';
2export * from 'apollo-link';
3import { HttpLink } from 'apollo-link-http';
4export * from 'apollo-cache-inmemory';
5import { InMemoryCache, NormalizedCache } from 'apollo-cache-inmemory';
6import gql from 'graphql-tag';
7import ApolloClient from 'apollo-client';
8export { gql, InMemoryCache, HttpLink };
9export default class DefaultClient<TCache = NormalizedCache> extends ApolloClient<TCache> {
10 constructor(config?: any);
11}