import { SinkInternal } from "@effect/core/stream/Sink/operations/_internal/SinkInternal" /** * @tsplus static effect/core/stream/Sink.Ops leftover */ export function leftover(chunk: Chunk): Sink { return new SinkInternal(Channel.suspend(Channel.write(chunk))) }