1 | import type { SuspenseCacheOptions } from "../index.js";
|
2 | import { SuspenseCache } from "./SuspenseCache.js";
|
3 | import type { ApolloClient } from "../../../core/ApolloClient.js";
|
4 | declare module "../../../core/ApolloClient.js" {
|
5 | interface DefaultOptions {
|
6 | react?: {
|
7 | suspense?: Readonly<SuspenseCacheOptions>;
|
8 | };
|
9 | }
|
10 | }
|
11 | declare const suspenseCacheSymbol: unique symbol;
|
12 | export declare function getSuspenseCache(client: ApolloClient<object> & {
|
13 | [suspenseCacheSymbol]?: SuspenseCache;
|
14 | }): SuspenseCache;
|
15 | export {};
|
16 |
|
\ | No newline at end of file |