/** * Returns a new channel, which is the concatenation of all the channels that * are written out by this channel. This method may only be called on channels * that output other channels. * * @tsplus getter effect/core/stream/Channel concatOut */ export function concatOut( self: Channel< Env, InErr, InElem, InDone, OutErr, Channel, OutDone > ): Channel { return Channel.concatAll(self) }