UNPKG

@shopify/react-async

Version:

Tools for creating powerful, asynchronously-loaded React components.

10 lines (9 loc) 320 B
/// <reference types="react" /> import { Omit } from '@shopify/useful-types'; import { PrefetchManager } from './context/prefetch'; interface Props { manager: PrefetchManager; } export declare const INTENTION_DELAY_MS = 150; export declare function Prefetcher(props: Omit<Props, 'manager'>): JSX.Element; export {};