UNPKG

284 BTypeScriptView Raw
1import { RequestInfo, RequestInit } from "node-fetch";
2export declare function createPrefetch(previousKey: string | null): (info: RequestInfo, init?: RequestInit) => Promise<string | null>;
3export declare const isKeyValid: (previousKey: string | null, key: string | null) => boolean;