mol_jsx_lib 0.0.151 → 0.0.154

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mol_jsx_lib",
3
- "version": "0.0.151",
3
+ "version": "0.0.154",
4
4
  "main": "node.js",
5
5
  "module": "node.esm.js",
6
6
  "browser": "web.js",
package/web.d.ts CHANGED
@@ -448,7 +448,7 @@ declare namespace $ {
448
448
  set(key: Key, value: Value): this;
449
449
  delete(key: Key): boolean;
450
450
  clear(): void;
451
- item(key: Key, next?: Value | null): Value | null;
451
+ item(key: Key, next?: Value | null): NonNullable<Value> | null;
452
452
  }
453
453
  }
454
454