mol_wire_lib 1.0.478 → 1.0.480
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 +2 -2
- package/node.esm.js.map +1 -1
- package/node.js.map +1 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +2 -2
- package/web.esm.js.map +1 -1
- package/web.js.map +1 -1
package/node.d.ts
CHANGED
|
@@ -296,8 +296,8 @@ declare namespace $ {
|
|
|
296
296
|
}
|
|
297
297
|
|
|
298
298
|
declare namespace $ {
|
|
299
|
-
function $mol_wire_race<Tasks extends (() => any)[]>(...tasks: Tasks): {
|
|
300
|
-
[index in keyof Tasks]: ReturnType<Tasks[index]>;
|
|
299
|
+
function $mol_wire_race<Tasks extends ((...args: any) => any)[]>(...tasks: Tasks): {
|
|
300
|
+
[index in Extract<keyof Tasks, number>]: ReturnType<Tasks[index]>;
|
|
301
301
|
};
|
|
302
302
|
}
|
|
303
303
|
|