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