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.

8 lines
372 B

4 months ago
import type * as ReactTypes from "react";
import type { ApolloClient } from "../../core/index.js";
export interface ApolloProviderProps<TCache> {
client: ApolloClient<TCache>;
children: ReactTypes.ReactNode | ReactTypes.ReactNode[] | null;
}
export declare const ApolloProvider: ReactTypes.FC<ApolloProviderProps<any>>;
//# sourceMappingURL=ApolloProvider.d.ts.map