import type * as C from "../core.js"; /** * Returns a new channel, which is the same as this one, except the failure value of the returned * channel is created by applying the specified function to the failure value of this channel. */ export declare function mapError_(self: C.Channel, f: (err: OutErr) => OutErr2): C.Channel; /** * Returns a new channel, which is the same as this one, except the failure value of the returned * channel is created by applying the specified function to the failure value of this channel. * * @ets_data_first mapError_ */ export declare function mapError(f: (err: OutErr) => OutErr2): (self: C.Channel) => C.Channel; //# sourceMappingURL=mapError.d.ts.map