UNPKG

@sample-stack/counter-module-browser

Version:

Sample core for higher packages to depend on

9 lines (7 loc) 291 B
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>; }