import * as C from "../core.js"; /** * Returns a new channel whose outputs are fed to the specified factory function, which creates * new channels in response. These new channels are sequentially concatenated together, and all * their outputs appear as outputs of the newly returned channel. */ export declare function concatMap_(self: C.Channel, f: (o: OutElem) => C.Channel): C.Channel; /** * Returns a new channel whose outputs are fed to the specified factory function, which creates * new channels in response. These new channels are sequentially concatenated together, and all * their outputs appear as outputs of the newly returned channel. * * @ets_data_first concatMap_ */ export declare function concatMap(f: (o: OutElem) => C.Channel): (self: C.Channel) => C.Channel; //# sourceMappingURL=concatMap.d.ts.map