@apollo/client
Version:
A fully-featured caching GraphQL client.
17 lines (16 loc) • 496 B
TypeScript
import type { Trie } from "@wry/trie";
import type { Incremental } from "@apollo/client/incremental";
/**
* @internal
*
* @deprecated This is an internal API and should not be used directly. This can be removed or changed at any time.
*/
export type StreamInfoTrie = Trie<{
current: Incremental.StreamFieldInfo;
previous?: {
incoming: unknown;
streamFieldInfo: Incremental.StreamFieldInfo;
result: unknown;
};
}>;
//# sourceMappingURL=StreamInfoTrie.d.ts.map