@apollo/client
Version:
A fully-featured caching GraphQL client.
12 lines • 425 B
TypeScript
import type { streamInfoSymbol } from "../constants.js";
import type { StreamInfoTrie } from "./StreamInfoTrie.js";
/**
* For use in Cache implementations only.
* This should not be used in userland code.
*/
export interface ExtensionsWithStreamInfo extends Record<string, unknown> {
[streamInfoSymbol]?: {
deref(): StreamInfoTrie | undefined;
};
}
//# sourceMappingURL=ExtensionsWithStreamDetails.d.ts.map