UNPKG

@orbitdb/ordered-keyvalue-db

Version:

Ordered keyvalue database type for orbit-db.

9 lines (8 loc) 241 B
import { DagCborEncodable } from "@orbitdb/core"; export type DBElements = number | boolean | string | { [key: string]: DBElements; } | Array<DBElements>; export type PutEntryValue = { value: DagCborEncodable; after?: string; };