Options
All
  • Public
  • Public/Protected
  • All
Menu

A transform stream consists of a pair of streams: a writable stream, known as its writable side, and a readable stream, known as its readable side. In a manner specific to the transform stream in question, writes to the writable side result in new data being made available for reading from the readable side.

Type parameters

  • I = any

  • O = any

Hierarchy

  • TransformStream

Index

Constructors

Properties

Constructors

constructor

  • Type parameters

    • I = any

    • O = any

    Parameters

    Returns TransformStream<I, O>

Properties

Readonly readable

readable: ReadableStream<O>

The readable side of the transform stream.

Readonly writable

writable: WritableStream<I>

The writable side of the transform stream.

Generated using TypeDoc