/** * Maps the error value of this effect to an optional value. * * @tsplus getter effect/core/io/Effect asSomeError */ export function asSomeError(self: Effect): Effect, A> { return self.mapError(Maybe.some) }