@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
14 lines • 627 B
TypeScript
import * as E from "../Either/index.js";
import type { Effect, RIO } from "./effect.js";
/**
* Returns an effect whose failure and success have been lifted into an
* `Either`. The resulting effect cannot fail, because the failure case has
* been exposed as part of the `Either` success case.
*
* This method is useful for recovering from effects that may fail.
*
* The error parameter of the returned is `never`, since it is
* guaranteed the effect does not model failure.
*/
export declare function either<R, E, A>(self: Effect<R, E, A>, __trace?: string): RIO<R, E.Either<E, A>>;
//# sourceMappingURL=either.d.ts.map