UNPKG

imc

Version:

IMC is an In-Memory Cache key-value store.

11 lines (10 loc) 264 B
export declare class Cache { private store; constructor(store?: {}); set(key: string | object, value?: any): void; get(key?: string): any; delete(key: string): void; clear(): void; } export declare const cache: Cache; export default cache;