effect-io-ai

Package: effect
Module: Exit

Exit.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>:

Signature

type Exit<A, E> = Success<A, E> | Failure<A, E>

Source

Since v2.0.0