UNPKG

@shopify/react-graphql

Version:

Tools for creating type-safe and asynchronous GraphQL components for React

7 lines 348 B
/// <reference types="react" /> import { QueryProps } from './types'; export declare type Props<T> = Pick<QueryProps<T>, 'query' | 'variables' | 'onError' | 'onCompleted' | 'pollInterval'> & { ignoreCache?: boolean; }; export declare function Prefetch<T>({ ignoreCache, ...props }: Props<T>): JSX.Element; //# sourceMappingURL=Prefetch.d.ts.map