UNPKG
moonlifedb
Version:
latest (1.0.0-alpha.10-PRE3)
1.0.0-alpha.9B
1.0.0-alpha.9A
1.0.0-alpha.8A
1.0.0-alpha.10-PRE3
1.0.0-alpha.10-PRE2
1.0.0-alpha.10-PRE1
1.0.0-alpha.9
1.0.0-alpha.8
1.0.0-alpha.7
1.0.0-alpha.6
1.0.0-alpha.4
1.0.0-alpha.3
A JSON database with a bunch of tools and typescript support.
moonlifedb
/
dist
/
lib
/
database
/
adapters
/
LocalStorage.d.ts
12 lines
(11 loc)
•
277 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
declare
class
LocalStorage
{
tablePath
:
string
;
/** * LocalStorage adapter for the database app *
@param
options
*
@param
path a path to the folder, where to store data */
constructor
(
options
: { path:
string
; }
); }