@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
17 lines • 574 B
TypeScript
/**
* TypeScript does not have the concept of these environments,
* so we need to create a single entry point that combines all
* possible exports.
* That means that users will be offered "RSC" exports in a
* "SSR/Browser" code file, but those will error in a compilation
* step.
*
* This is a limitation of TypeScript, and we can't do anything
* about it.
*
* The build process will only create `.d.ts`/`d.cts` files from
* this, and not actual runtime code.
*/
export * from "./index.rsc.js";
export * from "./index.js";
//# sourceMappingURL=combined.d.ts.map