UNPKG

iridium

Version:

A custom lightweight ORM for MongoDB designed for power-users

6 lines (5 loc) 139 B
export interface Cache { set<T>(key: string, value: T): void; get<T>(key: string): PromiseLike<T>; clear(key: string): void; }