/** * @tsplus static effect/core/stream/Channel.Ops bufferChunk */ export function bufferChunk( ref: Ref> ): Channel, InDone, InErr, Chunk, InDone> { return Channel.buffer, InErr, InDone>( Chunk.empty(), (chunk) => chunk.isEmpty, ref ) }