mol_dump_lib 0.0.167 → 0.0.169
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 +7 -3
- package/node.deps.json +1 -1
- package/node.js +31 -6
- package/node.js.map +1 -1
- package/node.mjs +31 -6
- package/node.test.js +31 -6
- package/node.test.js.map +1 -1
- package/package.json +2 -1
- package/web.deps.json +1 -1
- package/web.js +8 -3
- package/web.js.map +1 -1
- package/web.mjs +8 -3
package/node.d.ts
CHANGED
|
@@ -1973,11 +1973,15 @@ declare namespace $.$$ {
|
|
|
1973
1973
|
}
|
|
1974
1974
|
}
|
|
1975
1975
|
|
|
1976
|
+
declare namespace $ {
|
|
1977
|
+
let $mol_mem_persist: typeof $mol_wire_solid;
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1976
1980
|
declare namespace $ {
|
|
1977
1981
|
class $mol_storage extends $mol_object2 {
|
|
1978
|
-
static native():
|
|
1979
|
-
static persisted(next?: boolean): boolean;
|
|
1980
|
-
static estimate():
|
|
1982
|
+
static native(): StorageManager;
|
|
1983
|
+
static persisted(next?: boolean, cache?: 'cache'): boolean;
|
|
1984
|
+
static estimate(): StorageEstimate;
|
|
1981
1985
|
static dir(): FileSystemDirectoryHandle;
|
|
1982
1986
|
}
|
|
1983
1987
|
}
|