Repository URL to install this package:
|
Version:
2.0.0-beta.20 ▾
|
import { ComponentType } from 'react';
import { ApolloClient, InMemoryCache } from 'apollo-boost';
export interface ReactRouterContext {
url?: string;
status?: number;
}
export declare type ScopedApp = ComponentType;
export interface OmniStore {
create(): OmniStore;
}
export { InMemoryCache };
export declare type ScopedClient = ApolloClient<InMemoryCache>;
export interface WebClientExports {
client: ScopedClient;
App: ScopedApp;
OmniStore: OmniStore;
}