import { Schedule } from "@effect/core/io/Schedule/definition"; import { Effect } from "@effect/core/io/Effect/definition"; import { Either } from "@tsplus/stdlib/data/Either/definition"; /** * Retries with the specified schedule, until it fails, and then both the * value produced by the schedule together with the last error are passed to * the recovery function. * @tsplus static effect/core/io/Effect.Aspects retryOrElseEither * @tsplus pipeable effect/core/io/Effect retryOrElseEither * @tsplus location "@effect/core/io/Effect/operations/retryOrElseEither" */ export declare function retryOrElseEither(policy: Schedule, orElse: (e: E, out: A1) => Effect): (self: Effect) => Effect>; //# sourceMappingURL=retryOrElseEither.d.ts.map