import type * as C from "../core.js"; /** * Returns a new channel that will perform the operations of this one, until failure, and then * it will switch over to the operations of the specified fallback channel. */ export declare function orElse_(self: C.Channel, that: C.Channel): C.Channel; /** * Returns a new channel that will perform the operations of this one, until failure, and then * it will switch over to the operations of the specified fallback channel. * * @ets_data_first orElse_ */ export declare function orElse(that: C.Channel): (self: C.Channel) => C.Channel; //# sourceMappingURL=orElse.d.ts.map