UNPKG
instant.db
Version:
latest (2.0.0)
2.0.0
1.0.0
A very basic simple and easy to use database with json files!
instant.db
/
dist
/
index.d.ts
10 lines
(9 loc)
•
288 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
Database
from
'./Database'
;
import
DatabaseAction
from
'./Action'
;
import
Util
from
'./Util'
;
export
declare
const
version
:
string
;
export
*
from
'./Database'
;
export
*
from
'./Errors'
;
export
*
from
'./Document'
;
export
{
Util
,
DatabaseAction
};
export
default
Database
;