import { SinkInternal } from "@effect/core/stream/Sink/operations/_internal/SinkInternal" /** * A sink that immediately ends with the specified value. * * @tsplus static effect/core/stream/Sink.Ops sync */ export function sync(z: LazyArg): Sink { return new SinkInternal(Channel.sync(z)) }