mol_jsx_lib 0.0.348 → 0.0.350

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
@@ -502,8 +502,8 @@ declare namespace $ {
502
502
  }
503
503
 
504
504
  declare namespace $ {
505
- function $mol_wire_race<Tasks extends (() => any)[]>(...tasks: Tasks): {
506
- [index in keyof Tasks]: ReturnType<Tasks[index]>;
505
+ function $mol_wire_race<Tasks extends ((...args: any) => any)[]>(...tasks: Tasks): {
506
+ [index in Extract<keyof Tasks, number>]: ReturnType<Tasks[index]>;
507
507
  };
508
508
  }
509
509