@shopify/react-graphql
Version:
Tools for creating type-safe and asynchronous GraphQL components for React
8 lines • 363 B
TypeScript
import React from 'react';
import type { ApolloClient } from '@apollo/client';
export interface Props<CacheShape> {
readonly client: ApolloClient<CacheShape>;
readonly children?: React.ReactNode;
}
export declare function ApolloProvider<CacheShape = any>({ client, children, }: Props<CacheShape>): JSX.Element;
//# sourceMappingURL=ApolloProvider.d.ts.map