A collection of UnderlyingSinks that implement the UnderlyingSink.
UnderlyingSink
stream.pipeTo( new WritableStream( new SinkComposite([ { write: (chunk) => console.info(`1 ${chunk}`) }, { write: (chunk) => console.info(`2 ${chunk}`) }, ]) )) Copy
stream.pipeTo( new WritableStream( new SinkComposite([ { write: (chunk) => console.info(`1 ${chunk}`) }, { write: (chunk) => console.info(`2 ${chunk}`) }, ]) ))
Private
Readonly
Generated using TypeDoc
A collection of
UnderlyingSink
s that implement theUnderlyingSink
.Example