UNPKG

tinycoll

Version:

A minimal reactive document store with Mongo-like querying, reactivity, TTL support, and optional persistence.

5 lines (4 loc) 125 B
export type StorageAdapter = { get: (key: string) => Promise<any>; set: (key: string, val: any) => Promise<void>; };