import { Cause } from "@effect/core/io/Cause/definition"; import { Effect } from "@effect/core/io/Effect/definition"; /** * Recovers from all errors with provided `Cause`. * * See `absorb`, `sandbox`, `mapErrorCause` for other functions that can * recover from defects. * @tsplus static effect/core/io/Effect.Aspects catchAllCause * @tsplus pipeable effect/core/io/Effect catchAllCause * @tsplus location "@effect/core/io/Effect/operations/catchAllCause" */ export declare function catchAllCause(f: (cause: Cause) => Effect): (self: import("../definition").Effect) => import("../definition").Effect; //# sourceMappingURL=catchAllCause.d.ts.map