Odoo GraphQL Subscription using Node, Express JS for Sample
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
591 B

import type { SuspenseCacheOptions } from "../index.js";
import { SuspenseCache } from "./SuspenseCache.js";
import type { ApolloClient } from "../../../core/ApolloClient.js";
declare module "../../../core/ApolloClient.js" {
interface DefaultOptions {
react?: {
suspense?: Readonly<SuspenseCacheOptions>;
};
}
}
declare const suspenseCacheSymbol: unique symbol;
export declare function getSuspenseCache(client: ApolloClient<object> & {
[suspenseCacheSymbol]?: SuspenseCache;
}): SuspenseCache;
export {};
//# sourceMappingURL=getSuspenseCache.d.ts.map