Streamlining Unwieldy Type Signatures in Option-Based Code

the type signatures for Option based code seem unwieldy because the type parameter is on the functions, there's no Option<T>

I know why (convention/treeshaking etc) - just wondering if anyone has an approach that reads nicer than
Effect.Effect<Option.None<T> | Option.Some<T>, E> ?
Was this page helpful?