9 lines
274 B
TypeScript
9 lines
274 B
TypeScript
import { Href } from './types';
|
|
export type PreloadProps = {
|
|
href: Href;
|
|
};
|
|
/**
|
|
* When rendered on a focused screen, this component will preload the specified route.
|
|
*/
|
|
export declare function Prefetch(props: PreloadProps): null;
|
|
//# sourceMappingURL=Prefetch.d.ts.map
|