From 697dc83d73bb32fd806edd2862b18009afbf54e6 Mon Sep 17 00:00:00 2001 From: David Sanders Date: Thu, 28 May 2026 13:01:27 -0700 Subject: [PATCH] doc: add webstreams to args for `pipeline` from `stream/promises` Signed-off-by: David Sanders --- doc/api/stream.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/doc/api/stream.md b/doc/api/stream.md index 9e34d78937d88c..60821bb1015fb8 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -69,6 +69,11 @@ or `require('node:stream').promises`. -* `streams` {Stream\[]|Iterable\[]|AsyncIterable\[]|Function\[]} -* `source` {Stream|Iterable|AsyncIterable|Function} +* `streams` {Stream\[]|Iterable\[]|AsyncIterable\[]|Function\[]| + ReadableStream\[]|WritableStream\[]|TransformStream\[]} +* `source` {Stream|Iterable|AsyncIterable|Function|ReadableStream} * Returns: {Promise|AsyncIterable} -* `...transforms` {Stream|Function} +* `...transforms` {Stream|Function|TransformStream} * `source` {AsyncIterable} * Returns: {Promise|AsyncIterable} -* `destination` {Stream|Function} +* `destination` {Stream|Function|WritableStream} * `source` {AsyncIterable} * Returns: {Promise|AsyncIterable} * `options` {Object} Pipeline options