mol_db 0.0.229 → 0.0.232
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/node.d.ts +104 -104
- package/node.deps.json +1 -1
- package/node.esm.js +234 -234
- package/node.esm.js.map +1 -1
- package/node.js +234 -234
- package/node.js.map +1 -1
- package/node.test.js +351 -351
- package/node.test.js.map +1 -1
- package/package.json +3 -3
- package/web.d.ts +24 -24
- package/web.deps.json +1 -1
- package/web.esm.js +46 -46
- package/web.esm.js.map +1 -1
- package/web.js +46 -46
- package/web.js.map +1 -1
- package/web.test.js +32 -32
- package/web.test.js.map +1 -1
package/node.d.ts
CHANGED
|
@@ -22,110 +22,6 @@ interface $node {
|
|
|
22
22
|
}
|
|
23
23
|
declare var $node: $node;
|
|
24
24
|
|
|
25
|
-
declare namespace $ {
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
declare namespace $ {
|
|
29
|
-
function $mol_db_response<Result>(request: IDBRequest<Result>): Promise<Result>;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
declare namespace $ {
|
|
33
|
-
function $mol_db<Schema extends $mol_db_schema>(this: $, name: string, ...migrations: ((transaction: $mol_db_transaction<$mol_db_schema>) => void)[]): Promise<$mol_db_database<Schema>>;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
declare namespace $ {
|
|
37
|
-
class $mol_db_store<Schema extends $mol_db_store_schema> {
|
|
38
|
-
readonly native: IDBObjectStore;
|
|
39
|
-
constructor(native: IDBObjectStore);
|
|
40
|
-
get name(): string;
|
|
41
|
-
get path(): string | string[];
|
|
42
|
-
get incremental(): boolean;
|
|
43
|
-
get indexes(): { [Name in keyof Schema["Indexes"]]: $mol_db_index<{
|
|
44
|
-
Key: Schema["Indexes"][Name];
|
|
45
|
-
Doc: Schema['Doc'];
|
|
46
|
-
}>; };
|
|
47
|
-
index_make(name: string, path?: string[], unique?: boolean, multiEntry?: boolean): IDBIndex;
|
|
48
|
-
index_drop(name: string): this;
|
|
49
|
-
get transaction(): $mol_db_transaction<$mol_db_schema>;
|
|
50
|
-
get db(): $mol_db_database<$mol_db_schema>;
|
|
51
|
-
clear(): Promise<undefined>;
|
|
52
|
-
count(keys?: Schema['Key'] | IDBKeyRange): Promise<number>;
|
|
53
|
-
put(doc: Schema['Doc'], key?: Schema['Key']): Promise<IDBValidKey>;
|
|
54
|
-
get(key: Schema['Key']): Promise<Schema["Doc"] | undefined>;
|
|
55
|
-
select(key?: Schema['Key'] | IDBKeyRange | null, count?: number): Promise<Schema["Doc"][]>;
|
|
56
|
-
drop(keys: Schema['Key'] | IDBKeyRange): Promise<undefined>;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
declare namespace $ {
|
|
61
|
-
type $mol_db_store_schema = {
|
|
62
|
-
Key: IDBValidKey;
|
|
63
|
-
Doc: unknown;
|
|
64
|
-
Indexes: Record<string, IDBValidKey[]>;
|
|
65
|
-
};
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
declare namespace $ {
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
declare namespace $ {
|
|
72
|
-
type $mol_db_schema = Record<string, $mol_db_store_schema>;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
declare namespace $ {
|
|
76
|
-
class $mol_db_database<Schema extends $mol_db_schema> {
|
|
77
|
-
readonly native: IDBDatabase;
|
|
78
|
-
constructor(native: IDBDatabase);
|
|
79
|
-
get name(): string;
|
|
80
|
-
get version(): number;
|
|
81
|
-
get stores(): (keyof Schema)[];
|
|
82
|
-
read<Names extends Exclude<keyof Schema, symbol | number>>(...names: Names[]): { [Name in keyof Pick<Schema, Names>]: $mol_db_store<Pick<Schema, Names>[Name]>; };
|
|
83
|
-
change<Names extends Exclude<keyof Schema, symbol | number>>(...names: Names[]): $mol_db_transaction<Pick<Schema, Names>>;
|
|
84
|
-
kill(): Promise<void>;
|
|
85
|
-
destructor(): void;
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
interface IDBTransaction {
|
|
90
|
-
commit(): void;
|
|
91
|
-
}
|
|
92
|
-
declare namespace $ {
|
|
93
|
-
class $mol_db_transaction<Schema extends $mol_db_schema> {
|
|
94
|
-
readonly native: IDBTransaction;
|
|
95
|
-
constructor(native: IDBTransaction);
|
|
96
|
-
get stores(): { [Name in keyof Schema]: $mol_db_store<Schema[Name]>; };
|
|
97
|
-
store_make(name: string): IDBObjectStore;
|
|
98
|
-
store_drop(name: string): this;
|
|
99
|
-
abort(): void;
|
|
100
|
-
commit(): Promise<void>;
|
|
101
|
-
get db(): $mol_db_database<$mol_db_schema>;
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
declare namespace $ {
|
|
106
|
-
class $mol_db_index<Schema extends $mol_db_index_schema> {
|
|
107
|
-
readonly native: IDBIndex;
|
|
108
|
-
constructor(native: IDBIndex);
|
|
109
|
-
get name(): string;
|
|
110
|
-
get paths(): string[];
|
|
111
|
-
get unique(): boolean;
|
|
112
|
-
get multiple(): boolean;
|
|
113
|
-
get store(): $mol_db_store<$mol_db_store_schema>;
|
|
114
|
-
get transaction(): $mol_db_transaction<$mol_db_schema>;
|
|
115
|
-
get db(): $mol_db_database<$mol_db_schema>;
|
|
116
|
-
count(keys?: Schema['Key'] | IDBKeyRange): Promise<number>;
|
|
117
|
-
get(key: Schema['Key']): Promise<Schema["Doc"] | undefined>;
|
|
118
|
-
select(key?: Schema['Key'] | IDBKeyRange | null, count?: number): Promise<Schema["Doc"][]>;
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
declare namespace $ {
|
|
123
|
-
type $mol_db_index_schema = {
|
|
124
|
-
Key: IDBValidKey[];
|
|
125
|
-
Doc: unknown;
|
|
126
|
-
};
|
|
127
|
-
}
|
|
128
|
-
|
|
129
25
|
declare namespace $ {
|
|
130
26
|
type $mol_log3_event<Fields> = {
|
|
131
27
|
[key in string]: unknown;
|
|
@@ -255,4 +151,108 @@ declare namespace $ {
|
|
|
255
151
|
function $mol_exec(this: $, dir: string, command: string, ...args: string[]): import("child_process").SpawnSyncReturns<Buffer>;
|
|
256
152
|
}
|
|
257
153
|
|
|
154
|
+
declare namespace $ {
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
declare namespace $ {
|
|
158
|
+
function $mol_db_response<Result>(request: IDBRequest<Result>): Promise<Result>;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
declare namespace $ {
|
|
162
|
+
function $mol_db<Schema extends $mol_db_schema>(this: $, name: string, ...migrations: ((transaction: $mol_db_transaction<$mol_db_schema>) => void)[]): Promise<$mol_db_database<Schema>>;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
declare namespace $ {
|
|
166
|
+
class $mol_db_store<Schema extends $mol_db_store_schema> {
|
|
167
|
+
readonly native: IDBObjectStore;
|
|
168
|
+
constructor(native: IDBObjectStore);
|
|
169
|
+
get name(): string;
|
|
170
|
+
get path(): string | string[];
|
|
171
|
+
get incremental(): boolean;
|
|
172
|
+
get indexes(): { [Name in keyof Schema["Indexes"]]: $mol_db_index<{
|
|
173
|
+
Key: Schema["Indexes"][Name];
|
|
174
|
+
Doc: Schema['Doc'];
|
|
175
|
+
}>; };
|
|
176
|
+
index_make(name: string, path?: string[], unique?: boolean, multiEntry?: boolean): IDBIndex;
|
|
177
|
+
index_drop(name: string): this;
|
|
178
|
+
get transaction(): $mol_db_transaction<$mol_db_schema>;
|
|
179
|
+
get db(): $mol_db_database<$mol_db_schema>;
|
|
180
|
+
clear(): Promise<undefined>;
|
|
181
|
+
count(keys?: Schema['Key'] | IDBKeyRange): Promise<number>;
|
|
182
|
+
put(doc: Schema['Doc'], key?: Schema['Key']): Promise<IDBValidKey>;
|
|
183
|
+
get(key: Schema['Key']): Promise<Schema["Doc"] | undefined>;
|
|
184
|
+
select(key?: Schema['Key'] | IDBKeyRange | null, count?: number): Promise<Schema["Doc"][]>;
|
|
185
|
+
drop(keys: Schema['Key'] | IDBKeyRange): Promise<undefined>;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
declare namespace $ {
|
|
190
|
+
type $mol_db_store_schema = {
|
|
191
|
+
Key: IDBValidKey;
|
|
192
|
+
Doc: unknown;
|
|
193
|
+
Indexes: Record<string, IDBValidKey[]>;
|
|
194
|
+
};
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
declare namespace $ {
|
|
198
|
+
class $mol_db_index<Schema extends $mol_db_index_schema> {
|
|
199
|
+
readonly native: IDBIndex;
|
|
200
|
+
constructor(native: IDBIndex);
|
|
201
|
+
get name(): string;
|
|
202
|
+
get paths(): string[];
|
|
203
|
+
get unique(): boolean;
|
|
204
|
+
get multiple(): boolean;
|
|
205
|
+
get store(): $mol_db_store<$mol_db_store_schema>;
|
|
206
|
+
get transaction(): $mol_db_transaction<$mol_db_schema>;
|
|
207
|
+
get db(): $mol_db_database<$mol_db_schema>;
|
|
208
|
+
count(keys?: Schema['Key'] | IDBKeyRange): Promise<number>;
|
|
209
|
+
get(key: Schema['Key']): Promise<Schema["Doc"] | undefined>;
|
|
210
|
+
select(key?: Schema['Key'] | IDBKeyRange | null, count?: number): Promise<Schema["Doc"][]>;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
declare namespace $ {
|
|
215
|
+
type $mol_db_index_schema = {
|
|
216
|
+
Key: IDBValidKey[];
|
|
217
|
+
Doc: unknown;
|
|
218
|
+
};
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
declare namespace $ {
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
declare namespace $ {
|
|
225
|
+
type $mol_db_schema = Record<string, $mol_db_store_schema>;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
declare namespace $ {
|
|
229
|
+
class $mol_db_database<Schema extends $mol_db_schema> {
|
|
230
|
+
readonly native: IDBDatabase;
|
|
231
|
+
constructor(native: IDBDatabase);
|
|
232
|
+
get name(): string;
|
|
233
|
+
get version(): number;
|
|
234
|
+
get stores(): (keyof Schema)[];
|
|
235
|
+
read<Names extends Exclude<keyof Schema, symbol | number>>(...names: Names[]): { [Name in keyof Pick<Schema, Names>]: $mol_db_store<Pick<Schema, Names>[Name]>; };
|
|
236
|
+
change<Names extends Exclude<keyof Schema, symbol | number>>(...names: Names[]): $mol_db_transaction<Pick<Schema, Names>>;
|
|
237
|
+
kill(): Promise<void>;
|
|
238
|
+
destructor(): void;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
interface IDBTransaction {
|
|
243
|
+
commit(): void;
|
|
244
|
+
}
|
|
245
|
+
declare namespace $ {
|
|
246
|
+
class $mol_db_transaction<Schema extends $mol_db_schema> {
|
|
247
|
+
readonly native: IDBTransaction;
|
|
248
|
+
constructor(native: IDBTransaction);
|
|
249
|
+
get stores(): { [Name in keyof Schema]: $mol_db_store<Schema[Name]>; };
|
|
250
|
+
store_make(name: string): IDBObjectStore;
|
|
251
|
+
store_drop(name: string): this;
|
|
252
|
+
abort(): void;
|
|
253
|
+
commit(): Promise<void>;
|
|
254
|
+
get db(): $mol_db_database<$mol_db_schema>;
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
|
|
258
258
|
export = $;
|
package/node.deps.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"files":["LICENSE","README.md","lang.lang.tree","mam.jam.js","mam.ts","package.json","sandbox.config.json","tsconfig.json","tsfmt.json","yarn.lock","mol/CNAME","mol/CODE_OF_CONDUCT.md","mol/CONTRIBUTING.md","mol/LICENSE","mol/index.html","mol/mol.meta.tree","mol/readme.md","mol/dom/context/context.ts","node/node.ts","node/node.node.ts","mol/
|
|
1
|
+
{"files":["LICENSE","README.md","lang.lang.tree","mam.jam.js","mam.ts","package.json","sandbox.config.json","tsconfig.json","tsfmt.json","yarn.lock","mol/CNAME","mol/CODE_OF_CONDUCT.md","mol/CONTRIBUTING.md","mol/LICENSE","mol/index.html","mol/mol.meta.tree","mol/readme.md","mol/dom/context/context.ts","node/node.ts","node/node.node.ts","mol/log3/log3.ts","mol/ambient/ambient.ts","mol/ambient/readme.md","mol/delegate/delegate.ts","mol/owning/owning.ts","mol/fail/fail.ts","mol/fail/hidden/hidden.ts","mol/type/README.md","mol/type/writable/writable.ts","mol/object2/object2.ts","mol/deprecated/deprecated.ts","mol/tree/readme.md","mol/tree/tree.ts","mol/log3/log3.node.ts","mol/env/env.ts","mol/env/env.node.ts","mol/exec/exec.node.ts","mol/dom/context/context.node.ts","mol/db/response/response.ts","mol/db/db.ts","mol/db/store/store.ts","mol/db/store/store_schema.ts","mol/db/index/index.ts","mol/db/index/index_schema.ts","mol/db/README.md","mol/db/db.node.ts","mol/db/db_schema.ts","mol/db/database/database.ts","mol/db/transaction/transaction.ts"],"mods":{},"deps_in":{"mol":{"mol/db":-9007199254740991,"mol/dom":-9007199254740991,"mol/exec":-9007199254740991,"mol/log3":-9007199254740991,"mol/tree":-9007199254740991,"mol/object2":-9007199254740991,"mol/ambient":-9007199254740991,"mol/owning":-9007199254740991,"mol/delegate":-9007199254740991,"mol/fail":-9007199254740991,"mol/type":-9007199254740991,"mol/deprecated":-9007199254740991,"mol/env":-9007199254740991},"":{"mol":-9007199254740991,"node":-9007199254740991,"node_modules":-9007199254740991},"mol/db/db.ts":{"mol/db":0},"mol/db":{"mol/db/transaction":-1,"mol/db/database":-1},"mol/db/transaction":{},"mol/db/store":{"mol/db/transaction":-5,"mol/db/index":-3,"mol/db":-1},"mol/db/index":{"mol/db":-5},"mol/db/response":{"mol/db/index":-3,"mol/db/store":-3,"mol/db/database":-3,"mol/db/db.ts":-2,"mol/db":-2},"mol/db/database":{"mol/db/transaction":-3},"mol/dom/context":{"mol/db/database":-3,"mol/db/db.ts":-2,"mol/db":-1},"mol/dom":{"mol/dom/context":-9007199254740991},"mol/dom/context/context.ts":{"mol/dom/context":0},"node":{"mol/dom/context":-1,"mol/log3":-2,"mol/exec":-2,"mol/db":-1},"node/node.ts":{"node":0},"node_modules":{"node":-2},"mol/exec":{"mol/dom/context":-4},"mol/log3":{"mol/exec":-2},"mol/log3/log3.ts":{"mol/log3":0},"mol/tree":{"mol/log3":-3},"mol/object2":{"mol/tree":-1},"mol/ambient":{"mol/object2":-2},"mol/owning":{"mol/object2":-3},"mol/delegate":{"mol/owning":-3},"mol/fail/hidden":{"mol/object2":-3},"mol/fail":{"mol/fail/hidden":-9007199254740991,"mol/tree":-4,"mol/exec":-2},"mol/type/writable":{"mol/object2":-3},"mol/type":{"mol/type/writable":-9007199254740991},"mol/deprecated":{"mol/tree":-2},"mol/env":{"mol/exec":-4},"mol/env/env.ts":{"mol/env":0}},"deps_out":{"mol/db":{"mol":-9007199254740991,"mol/db/db.ts":0,"mol/dom/context":-1,"node":-1,"mol/db/response":-2,"mol/db/store":-1,"mol/db/index":-5},"mol":{"":-9007199254740991},"mol/db/db.ts":{"mol/dom/context":-2,"mol/db/response":-2},"mol/db/transaction":{"mol/db":-1,"mol/db/store":-5,"mol/db/database":-3},"mol/db/store":{"mol/db/response":-3},"mol/db/index":{"mol/db/store":-3,"mol/db/response":-3},"mol/db/response":{},"mol/db/database":{"mol/db":-1,"mol/dom/context":-3,"mol/db/response":-3},"mol/dom/context":{"mol/dom":-9007199254740991,"mol/dom/context/context.ts":0,"node":-1,"mol/exec":-4},"mol/dom":{"mol":-9007199254740991},"mol/dom/context/context.ts":{},"node":{"":-9007199254740991,"node/node.ts":0,"node_modules":-2},"node_modules":{"":-9007199254740991},"mol/exec":{"mol":-9007199254740991,"mol/log3":-2,"node":-2,"mol/env":-4,"mol/fail":-2},"mol/log3":{"mol":-9007199254740991,"mol/log3/log3.ts":0,"node":-2,"mol/tree":-3},"mol/log3/log3.ts":{},"mol/tree":{"mol":-9007199254740991,"mol/object2":-1,"mol/fail":-4,"mol/deprecated":-2},"mol/object2":{"mol":-9007199254740991,"mol/ambient":-2,"mol/owning":-3,"mol/fail/hidden":-3,"mol/type/writable":-3},"mol/ambient":{"mol":-9007199254740991},"mol/owning":{"mol":-9007199254740991,"mol/delegate":-3},"mol/delegate":{"mol":-9007199254740991},"mol/fail/hidden":{"mol/fail":-9007199254740991},"mol/fail":{"mol":-9007199254740991},"mol/type/writable":{"mol/type":-9007199254740991},"mol/type":{"mol":-9007199254740991},"mol/deprecated":{"mol":-9007199254740991},"mol/env":{"mol":-9007199254740991,"mol/env/env.ts":0},"mol/env/env.ts":{}},"sloc":{"LICENSE":113,"md":731,"tree":31,"js":10,"ts":956,"json":87,"lock":939,"CNAME":1,"html":1},"deps":{"mol/db":{"..":-9007199254740991,"./db.ts":0,"/mol/dom/context/indexed":-1,"/node/fake-indexeddb":-1,"/mol/db":-1,"/mol/db/schema":-1,"/mol/db/transaction":-2,"/mol/db/response":-2,"/mol/db/database":-2,"/mol/db/store/schema":-1},"mol":{"..":-9007199254740991},"":{},"mol/db/db.ts":{"/mol/db":-1,"/mol/db/schema":-1,"/mol/db/transaction":-2,"/mol/dom/context/indexed":-2,"/mol/db/response":-2,"/mol/db/database":-2},"mol/db/transaction":{"..":-9007199254740991,"/mol/db/transaction":-1,"/mol/db/schema":-1,"/mol/db/store":-5,"/mol/db/database":-3},"mol/db/store":{"..":-9007199254740991,"/mol/db/store":-1,"/mol/db/store/schema":-1,"/mol/db/index":-5,"/mol/db/transaction":-3,"/mol/db/response":-3},"mol/db/index":{"..":-9007199254740991,"/mol/db/index":-1,"/mol/db/index/schema":-1,"/mol/db/store":-3,"/mol/db/response":-3},"mol/db/response":{"..":-9007199254740991,"/mol/db/response":-1},"mol/db/database":{"..":-9007199254740991,"/mol/db/database":-1,"/mol/db/schema":-1,"/mol/db/transaction":-3,"/mol/dom/context/indexed":-3,"/mol/db/response":-3},"mol/dom/context":{"..":-9007199254740991,"./context.ts":0,"/mol/dom/context":-1,"/node/jsdom":-1},"mol/dom":{"..":-9007199254740991},"mol/dom/context/context.ts":{"/mol/dom/context":-1},"node":{"..":-9007199254740991,"./node.ts":0,"/node":0,"module":-2,"path":-2,"fs":-2,"/mol/exec":-4},"node/node.ts":{},"node_modules":{"..":-9007199254740991},"mol/exec":{"..":-9007199254740991,"./exec.ts":0,"/mol/exec":-1,"/mol/log3/come":-2,"/node/path/relative":-3,"/node/child_process":-2,"/node/path/resolve":-4,"/mol/env":-4,"/mol/fail":-2},"mol/log3":{"..":-9007199254740991,"./log3.ts":0,"/mol/log3/node/make":-1,"/node/colorette":-2,"/mol/log3/logger":-1,"/mol/log3/event":-1,"/mol/tree/from":-3,"/mol/log3/come":-1,"/mol/log3/done":-1,"/mol/log3/fail":-1,"/mol/log3/warn":-1,"/mol/log3/rise":-1,"/mol/log3/area":-1,"/mol/log3/area/lazy":-1,"/mol/log3/stack":-1,"/mol/log3/area/call":-3},"mol/log3/log3.ts":{"/mol/log3/event":-1,"/mol/log3/logger":-1,"/mol/log3/come":-1,"/mol/log3/done":-1,"/mol/log3/fail":-1,"/mol/log3/warn":-1,"/mol/log3/rise":-1,"/mol/log3/area":-1,"/mol/log3/area/lazy":-1,"/mol/log3/stack":-1,"/mol/log3/area/call":-3},"mol/tree":{"..":-9007199254740991,"/mol/tree/convert":-1,"/mol/tree/path":-1,"/mol/tree/hack":-1,"/mol/tree":-1,"/mol/tree/context":-1,"/mol/tree/library":-1,"/mol/object2":-1,"/mol/tree/values":-4,"/mol/fail":-4,"/mol/tree/json/from":-2.25,"/mol/tree/from":-6,"/mol/tree/json/to":-2.25,"/mol/deprecated":-2},"mol/object2":{"..":-9007199254740991,"/mol/object2":-1,"/mol/ambient/ref":-2,"/mol/owning/get":-3,"/mol/fail/hidden":-3,"/mol/type/writable":-3},"mol/ambient":{"..":-9007199254740991,"/mol/ambient/ref":-1,"/mol/ambient/context":-1,"/mol/ambient":-1},"mol/owning":{"..":-9007199254740991,"/mol/owning/map":-1,"/mol/owning/allow":-1,"/mol/delegate":-3,"/mol/owning/get":-1,"/mol/owning/map/get":-2,"/mol/owning/check":-1,"/mol/owning/catch":-1,"/mol/owning/map/set":-2},"mol/delegate":{"..":-9007199254740991,"/mol/delegate":-1},"mol/fail/hidden":{"..":-9007199254740991,"/mol/fail/hidden":-1},"mol/fail":{"..":-9007199254740991,"/mol/fail":-1},"mol/type/writable":{"..":-9007199254740991,"/mol/type/writable":-1},"mol/type":{"..":-9007199254740991},"mol/deprecated":{"..":-9007199254740991,"/mol/deprecated":-1,"/mol/deprecated/wrapper":-3,"/mol/log3/warn":-5},"mol/env":{"..":-9007199254740991,"./env.ts":0,"/mol/env":-1},"mol/env/env.ts":{"/mol/env":-1}}}
|