@apollo/client-react-streaming
Version:
This package provides building blocks to create framework-level integration of Apollo Client with React's streaming SSR. See the [@apollo/client-integration-nextjs](https://github.com/apollographql/apollo-client-integrations/tree/main/packages/nextjs) pac
23 lines • 808 B
TypeScript
import type { InMemoryCacheConfig } from "@apollo/client";
import { InMemoryCache as OrigInMemoryCache } from "@apollo/client";
import { sourceSymbol } from "../bundleInfo.js";
/**
* A version of `InMemoryCache` to be used with streaming SSR.
*
* For more documentation, please see {@link https://www.apollographql.com/docs/react/api/cache/InMemoryCache | the Apollo Client API documentation}.
*
* @public
*/
export declare class InMemoryCache extends OrigInMemoryCache {
/**
* Information about the current package and it's export names, for use in error messages.
*
* @internal
*/
static readonly info: {
pkg: string;
};
[sourceSymbol]: string;
constructor(config?: InMemoryCacheConfig | undefined);
}
//# sourceMappingURL=WrappedInMemoryCache.d.ts.map