import * as C from "../core.js"; /** * 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. */ export declare function catchAll_(self: C.Channel, f: (error: OutErr) => C.Channel): C.Channel; /** * 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. * * @ets_data_first catchAll_ */ export declare function catchAll(f: (error: OutErr) => C.Channel): (self: C.Channel) => C.Channel; //# sourceMappingURL=catchAll.d.ts.map