mol_dump_lib 0.0.33 → 0.0.35

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
@@ -576,8 +576,10 @@ declare namespace $ {
576
576
  }
577
577
 
578
578
  declare namespace $ {
579
- type $mol_type_keys_extract<Input, Upper> = {
580
- [Field in keyof Input]: unknown extends Input[Field] ? never : Input[Field] extends never ? never : Input[Field] extends Upper ? Field : never;
579
+ type $mol_type_keys_extract<Input, Upper, Lower = never> = {
580
+ [Field in keyof Input]: unknown extends Input[Field] ? never : Input[Field] extends never ? never : Input[Field] extends Upper ? [
581
+ Lower
582
+ ] extends [Input[Field]] ? Field : never : never;
581
583
  }[keyof Input];
582
584
  }
583
585