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 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(): string;
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(): any;
1978
- static persisted(next?: boolean): boolean;
1979
- static estimate(): number;
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
  }