UNPKG

mesh-fetcher

Version:

A Node.js package for fetching data from multiple APIs with enhanced features.

9 lines (8 loc) 237 B
import { CacheStore } from '../../types'; export declare class MemoryCache implements CacheStore { private cache; get(key: string): any; set(key: string, value: any): void; delete(key: string): void; clear(): void; }