Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect Type Inference for call in Effection 4.0.0-alpha.6 #972

Closed
VldMrgnn opened this issue Feb 3, 2025 · 1 comment
Closed

Incorrect Type Inference for call in Effection 4.0.0-alpha.6 #972

VldMrgnn opened this issue Feb 3, 2025 · 1 comment
Assignees

Comments

@VldMrgnn
Copy link

VldMrgnn commented Feb 3, 2025

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

  1. Define an operation that returns a string:
function* computeHashString(): Operation<string> {
  yield* sleep(1000);
  return "a string";
}
  1. Attempt to use call:
import { call, Operation } from "effection";

const hashString = 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
}
  1. 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.

as @cowboyd pointed out on Discord conversation:

the order of overloads in Effection is:

export function call<T, TArgs extends unknown[] = []>(
  fn: (...args: TArgs) => Promise<T>,
): Operation<T>;
export function call<T, TArgs extends unknown[] = []>(
  fn: (...args: TArgs) => T,
): Operation<T>;
export function call<T, TArgs extends unknown[] = []>(
  fn: (...args: TArgs) => Operation<T>,
): Operation<T>;

and reversing the second and third overloads should fix the problem:

export function call<T, TArgs extends unknown[] = []>(
  fn: (...args: TArgs) => Promise<T>,
): Operation<T>;
export function call<T, TArgs extends unknown[] = []>(
  fn: (...args: TArgs) => Operation<T>,
): Operation<T>;
export function call<T, TArgs extends unknown[] = []>(
  fn: (...args: TArgs) => T,
): Operation<T>;

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.

@cowboyd
Copy link
Member

cowboyd commented Feb 27, 2025

This should be fixed by #973 and the release of 4.0.0-alpha.7 Please re-open if not.

@cowboyd cowboyd closed this as completed Feb 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants