mol_dump_lib 0.0.142 → 0.0.144
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 +9 -0
- package/node.deps.json +1 -1
- package/node.js +38 -3
- package/node.js.map +1 -1
- package/node.mjs +38 -3
- package/node.test.js +38 -3
- package/node.test.js.map +1 -1
- package/package.json +2 -1
- package/web.d.ts +18 -0
- package/web.deps.json +1 -1
- package/web.js +50 -3
- package/web.js.map +1 -1
- package/web.mjs +50 -3
package/node.d.ts
CHANGED
|
@@ -1970,6 +1970,15 @@ declare namespace $.$$ {
|
|
|
1970
1970
|
}
|
|
1971
1971
|
}
|
|
1972
1972
|
|
|
1973
|
+
declare namespace $ {
|
|
1974
|
+
class $mol_storage extends $mol_object2 {
|
|
1975
|
+
static native(): any;
|
|
1976
|
+
static persisted(next?: boolean): boolean;
|
|
1977
|
+
static estimate(): number;
|
|
1978
|
+
static dir(): FileSystemDirectoryHandle;
|
|
1979
|
+
}
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1973
1982
|
declare namespace $ {
|
|
1974
1983
|
class $mol_state_local<Value> extends $mol_object {
|
|
1975
1984
|
static 'native()': Pick<Storage, 'getItem' | 'setItem' | 'removeItem'>;
|