UNPKG

@constl/bohr-db

Version:

Type-safe databases for orbit-db.

7 lines (6 loc) 244 B
export type DBElements = number | boolean | string | { [key: string]: DBElements; } | Array<DBElements>; export type DBElementsWithUndefined = number | boolean | string | { [clef: string]: DBElements; } | Array<DBElements> | undefined;