WritableStream
open class WritableStream<W : JsAny?>( underlyingSink: UnderlyingSink<W> = definedExternally, strategy: QueuingStrategy<W> = definedExternally) : Transferable(source)
The WritableStream
interface of the Streams API provides a standard abstraction for writing streaming data to a destination, known as a sink.
Constructors
Link copied to clipboard
constructor(underlyingSink: UnderlyingSink<W> = definedExternally, strategy: QueuingStrategy<W> = definedExternally)