Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
Fix <ApolloProvider/> typings
Browse files Browse the repository at this point in the history
  • Loading branch information
Madumo committed Nov 3, 2017
1 parent b52b017 commit e96bea3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ApolloProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ import QueryRecyclerProvider from './QueryRecyclerProvider';

const invariant = require('invariant');

export interface ProviderProps<Cache> {
client: ApolloClient<Cache>;
export interface ProviderProps<TCache> {
client: ApolloClient<TCache>;
}

export default class ApolloProvider extends Component<
ProviderProps<Cache>,
export default class ApolloProvider<TCache> extends Component<
ProviderProps<TCache>,
any
> {
static propTypes = {
Expand Down

0 comments on commit e96bea3

Please sign in to comment.