Repository URL to install this package:
|
Version:
1.2.7 ▾
|
import { Component, ComponentType } from 'react'
import { ApolloClient, HttpLink, InMemoryCache, ApolloLink } from 'apollo-boost'
export interface ReactRouterContext {
url?: string
status?: number
}
// export class ScopedApp extends ComponentType {}
export type ScopedApp = ComponentType
export interface OmniStore {
create(): OmniStore
}
export { InMemoryCache }
export type ScopedClient = ApolloClient<InMemoryCache>
export interface WebClientExports {
client: ScopedClient
App: ScopedApp
OmniStore: OmniStore
}