import type * as C from "../core.js"; /** * Returns a new channel that is the sequential composition of this channel and the specified * channel. The returned channel terminates with the terminal value of this channel. */ export declare function zipLeft_(self: C.Channel, that: C.Channel): C.Channel; /** * Returns a new channel that is the sequential composition of this channel and the specified * channel. The returned channel terminates with the terminal value of this channel. * * @ets_data_first zipLeft_ */ export declare function zipLeft(that: C.Channel): (self: C.Channel) => C.Channel; //# sourceMappingURL=zipLeft.d.ts.map