import { Cause } from "@effect/core/io/Cause/definition"; import { Channel } from "@effect/core/stream/Channel/definition/base"; /** * Returns a new channel that is the same as this one, except if this channel * errors for any cause at all, then the returned channel will switch over to * using the fallback channel returned by the specified error handler. * @tsplus static effect/core/stream/Channel.Aspects catchAllCause * @tsplus pipeable effect/core/stream/Channel catchAllCause * @tsplus location "@effect/core/stream/Channel/operations/catchAllCause" */ export declare function catchAllCause(f: (cause: Cause) => Channel): (self: import("../definition").Channel) => import("../definition").Channel; //# sourceMappingURL=catchAllCause.d.ts.map