TransformStream
Defined in: .pnpm-home/store/v11/links/@cloudflare/workers-types/4.20251118.0/2891147a4db443bf13ca098dcb7381fb6bac5793758b7fd187ebaf5bc0deb969/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.
Extended by
Section titled “Extended by”Type Parameters
Section titled “Type Parameters”I = any
O = any
Constructors
Section titled “Constructors”Constructor
Section titled “Constructor”new TransformStream<
I,O>(transformer?,writableStrategy?,readableStrategy?):TransformStream<I,O>
Defined in: .pnpm-home/store/v11/links/@cloudflare/workers-types/4.20251118.0/2891147a4db443bf13ca098dcb7381fb6bac5793758b7fd187ebaf5bc0deb969/node_modules/@cloudflare/workers-types/index.ts:2928
Parameters
Section titled “Parameters”transformer?
Section titled “transformer?”Transformer<I, O>
writableStrategy?
Section titled “writableStrategy?”readableStrategy?
Section titled “readableStrategy?”Returns
Section titled “Returns”TransformStream<I, O>
Properties
Section titled “Properties”readable
Section titled “readable”
readonlyreadable:ReadableStream<O>
Defined in: .pnpm-home/store/v11/links/@cloudflare/workers-types/4.20251118.0/2891147a4db443bf13ca098dcb7381fb6bac5793758b7fd187ebaf5bc0deb969/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.
writable
Section titled “writable”
readonlywritable:WritableStream<I>
Defined in: .pnpm-home/store/v11/links/@cloudflare/workers-types/4.20251118.0/2891147a4db443bf13ca098dcb7381fb6bac5793758b7fd187ebaf5bc0deb969/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.