mol_dump_lib 0.0.166 → 0.0.168
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 -4
- package/node.deps.json +1 -1
- package/node.js +34 -8
- package/node.js.map +1 -1
- package/node.mjs +34 -8
- package/node.test.js +34 -8
- package/node.test.js.map +1 -1
- package/package.json +2 -1
- package/web.d.ts +2 -1
- package/web.deps.json +1 -1
- package/web.js +11 -5
- package/web.js.map +1 -1
- package/web.mjs +11 -5
package/node.d.ts
CHANGED
|
@@ -67,8 +67,9 @@ declare namespace $ {
|
|
|
67
67
|
static [Symbol.toPrimitive](): string;
|
|
68
68
|
static toString(): string;
|
|
69
69
|
destructor(): void;
|
|
70
|
+
static destructor(): void;
|
|
70
71
|
toString(): string;
|
|
71
|
-
static toJSON():
|
|
72
|
+
static toJSON(): any;
|
|
72
73
|
toJSON(): any;
|
|
73
74
|
}
|
|
74
75
|
}
|
|
@@ -1972,11 +1973,15 @@ declare namespace $.$$ {
|
|
|
1972
1973
|
}
|
|
1973
1974
|
}
|
|
1974
1975
|
|
|
1976
|
+
declare namespace $ {
|
|
1977
|
+
let $mol_mem_persist: typeof $mol_wire_solid;
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1975
1980
|
declare namespace $ {
|
|
1976
1981
|
class $mol_storage extends $mol_object2 {
|
|
1977
|
-
static native():
|
|
1978
|
-
static persisted(next?: boolean): boolean;
|
|
1979
|
-
static estimate():
|
|
1982
|
+
static native(): StorageManager;
|
|
1983
|
+
static persisted(next?: boolean, cache?: 'cache'): boolean;
|
|
1984
|
+
static estimate(): StorageEstimate;
|
|
1980
1985
|
static dir(): FileSystemDirectoryHandle;
|
|
1981
1986
|
}
|
|
1982
1987
|
}
|