import { Either } from "@tsplus/stdlib/data/Either/definition"; /** * Executes the specified `Either` if it is a `Right`, otherwise executes * `onLeft`. * @tsplus static Either.Aspects catchAll * @tsplus pipeable Either catchAll * @tsplus location "@tsplus/stdlib/data/Either/catchAll" */ export declare function catchAll(onLeft: (e: E) => Either): (self: import("./definition").Either) => import("./definition").Either; //# sourceMappingURL=catchAll.d.ts.map