mol_jsx_lib 0.0.152 → 0.0.153

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
@@ -548,7 +548,7 @@ declare namespace $ {
548
548
  set(key: Key, value: Value): this;
549
549
  delete(key: Key): boolean;
550
550
  clear(): void;
551
- item(key: Key, next?: Value | null): Value | null;
551
+ item(key: Key, next?: Value | null): NonNullable<Value> | null;
552
552
  }
553
553
  }
554
554