UNPKG
@constl/bohr-db
Version:
latest (2.2.5)
2.2.5
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.0.1
2.0.0
1.3.2
1.3.1
1.3.0
1.2.7
1.2.6
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.0
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Type-safe databases for orbit-db.
@constl/bohr-db
/
dist
/
types.d.ts
7 lines
(6 loc)
•
244 B
TypeScript
View Raw
1
2
3
4
5
6
7
export
type
DBElements
=
number
|
boolean
|
string
| { [
key
:
string
]:
DBElements
; } |
Array
<
DBElements
>;
export
type
DBElementsWithUndefined
=
number
|
boolean
|
string
| { [
clef
:
string
]:
DBElements
; } |
Array
<
DBElements
> |
undefined
;