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