MCPcopy
hub / github.com/typicode/lowdb / Adapter

Interface Adapter

src/core/Low.ts:1–4  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1export interface Adapter<T> {
2 read: () => Promise<T | null>
3 write: (data: T) => Promise<void>
4}
5
6export interface SyncAdapter<T> {
7 read: () => T | null

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…