Skip to content

TransformStream

Defined in: node_modules/.pnpm/@cloudflare+workers-types@4.20251118.0/node_modules/@cloudflare/workers-types/index.ts:2927

The TransformStream interface of the Streams API represents a concrete implementation of the pipe chain transform stream concept.

MDN Reference

I = any

O = any

new TransformStream<I, O>(transformer?, writableStrategy?, readableStrategy?): TransformStream<I, O>

Defined in: node_modules/.pnpm/@cloudflare+workers-types@4.20251118.0/node_modules/@cloudflare/workers-types/index.ts:2928

Transformer<I, O>

QueuingStrategy<I>

QueuingStrategy<O>

TransformStream<I, O>

readonly readable: ReadableStream<O>

Defined in: node_modules/.pnpm/@cloudflare+workers-types@4.20251118.0/node_modules/@cloudflare/workers-types/index.ts:2938

The readable read-only property of the TransformStream interface returns the ReadableStream instance controlled by this TransformStream.

MDN Reference


readonly writable: WritableStream<I>

Defined in: node_modules/.pnpm/@cloudflare+workers-types@4.20251118.0/node_modules/@cloudflare/workers-types/index.ts:2944

The writable read-only property of the TransformStream interface returns the WritableStream instance controlled by this TransformStream.

MDN Reference