You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There appears to be an issue with the type definitions of call in Effection v4 where the overload for () => Operation<T> is overshadowed by the overload for () => T.
This causes unexpected type errors when returning an Operation, and it may affect other types as well.
import{call,Operation}from"effection";consthashString=yield*call(()=>computeHashString());console.log('the hash string is:',hashString);// correctly logs "a string"// Type of hashString is Operation<string>, so this comparison causes a TS error:if(hashString==="a string"){// Type error}
Alternatively, calling call(computeHashString) triggers a different type error:
No overload matches this call.
Argument of type 'Operation<string>' is not assignable to parameter of type '() => Operation<unknown>'
...
Expected Behavior
call(computeHashString) should match the overload that accepts () => Operation rather than failing to match any overload.
Actual Behavior
The overload that accepts () => T is prioritized before the one that accepts () => Operation, causing the compiler to complain.
There appears to be an issue with the type definitions of
call
in Effection v4 where the overload for() => Operation<T>
is overshadowed by the overload for() => T
.This causes unexpected type errors when returning an Operation, and it may affect other types as well.
Steps to Reproduce
call(computeHashString)
triggers a different type error:Expected Behavior
call(computeHashString)
should match the overload that accepts () => Operation rather than failing to match any overload.Actual Behavior
The overload that accepts () => T is prioritized before the one that accepts () => Operation, causing the compiler to complain.
as @cowboyd pointed out on Discord conversation:
the order of overloads in Effection is:
and reversing the second and third overloads should fix the problem:
Effection version: v. 4.0.0-alpha.6
Typescript version: 5.2.2
i.e.
Swapping the overloads so that () => Operation is checked before () => T resolves the type error.
The text was updated successfully, but these errors were encountered: