UNPKG

@httpc/kit

Version:

httpc toolbox for building function-based API with minimal code and end-to-end type safety

6 lines (5 loc) 209 B
import { ICache } from "./types"; export type InMemoryCacheOptions = {}; export declare class InMemoryCache extends Map<string, any> implements ICache { constructor(options?: InMemoryCacheOptions); }