You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

10 lines
422 B

import { CreateFetchCacheOptions, FetchCache, Runtime } from "../fetch-cache.js";
export declare const runtime: Runtime;
/**
* @example
* ```ts
* import createFetchCache from "fetch-mock-cache/runtimes/node.js"
* import Store from "fetch-mock-cache/stores/memory";
* const fetchCache = createFetchCache({ Store });
*/
export default function createFetchCache(options?: Partial<CreateFetchCacheOptions>): FetchCache;