© 2026 Hedgehog Software, LLC
function demo(foo: string | undefined) { return Effect.gen(function* () { if (foo == null) { yield* Effect.fail(new RuntimeException()); } return foo; }); }
Effect.Effect<string | undefined, RuntimeException, never>
Effect.Effect<string, ...>