@sample-stack/counter-module-browser
Version:
Sample core for higher packages to depend on
12 lines • 356 B
TypeScript
import { DataProxy } from '@apollo/client/cache';
import { ApolloClient } from '@apollo/client/index.js';
export interface MyContext {
cache: DataProxy;
getCacheKey: (options: {
__typename: string;
resource?: string;
id?: string;
}) => string;
apolloClient: ApolloClient<any>;
}
//# sourceMappingURL=context.d.ts.map