UNPKG

@apollo/client

Version:

A fully-featured caching GraphQL client.

19 lines (18 loc) 589 B
import type { Trie } from "@wry/trie"; import type { Incremental } from "@apollo/client/incremental"; import type { StreamArrayState } from "../StreamArrayState.js"; /** * @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; state: StreamArrayState; previous?: { incoming: unknown; streamFieldInfo: Incremental.StreamFieldInfo; result: unknown; }; }>; //# sourceMappingURL=StreamInfoTrie.d.ts.map