import { concreteSink, SinkInternal } from "@effect/core/stream/Sink/operations/_internal/SinkInternal" /** * @tsplus getter effect/core/stream/Sink dropLeftover */ export function dropLeftover( self: Sink ): Sink { concreteSink(self) return new SinkInternal(self.channel.drain) }