UNPKG
@sinkingsheep/jsondb
Version:
latest (1.0.7)
1.0.7
1.0.6
1.0.5
1.0.4
1.0.2
1.0.1
1.0.0
A lightweight JSON-based database for Node.js
github.com/sinkingsheep/JsonDB
sinkingsheep/JsonDB
@sinkingsheep/jsondb
/
dist
/
fileOperations.d.ts
3 lines
(2 loc)
•
260 B
TypeScript
View Raw
1
2
3
export
declare
function
loadCollection
(
directory
:
string
,
collectionName
:
string
):
Promise
<
Map
<
string
,
any
>>;
export
declare
function
saveCollection
(
directory
:
string
,
collectionName
:
string
,
collection
:
Map
<
string
,
any
>,
prettyPrint
:
boolean
):
Promise
<
void
>;