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 typed error, 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 catchAll * @tsplus pipeable effect/core/stream/Channel catchAll * @tsplus location "@effect/core/stream/Channel/operations/catchAll" */ export declare function catchAll(f: (error: OutErr) => Channel): (self: import("../definition").Channel) => import("../definition").Channel; //# sourceMappingURL=catchAll.d.ts.map