/** * Maps the error value of this effect to a right value. * * @tsplus getter effect/core/io/Effect asRightError */ export function asRightError(self: Effect): Effect, A> { return self.mapError(Either.right) }