Package: effect
Module: Exit
An Exit<A, E = never> describes the result of a executing an Effect workflow.
There are two possible values for an Exit<A, E>:
Exit.Success contain a success value of type AExit.Failure contains a failure Cause of type ESignature
type Exit<A, E> = Success<A, E> | Failure<A, E>
Since v2.0.0