import { Cause } from "@effect/core/io/Cause/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Switches over to the stream produced by the provided function in case this * one fails. Allows recovery from all causes of failure, including * interruption if the stream is uninterruptible. * @tsplus static effect/core/stream/Stream.Aspects catchAllCause * @tsplus pipeable effect/core/stream/Stream catchAllCause * @tsplus location "@effect/core/stream/Stream/operations/catchAllCause" */ export declare function catchAllCause(f: (cause: Cause) => Stream): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=catchAllCause.d.ts.map