declare const foo: (x: number) => Effect.Effect<void>; Effect.succeed(true).pipe(Effect.tap(foo)); // no error Effect.succeed(true).pipe(Effect.tap(x => foo(x))); // error
© 2026 Hedgehog Software, LLC