From eddf5cc903e7e74ffc74af62e8276eed27550f0f Mon Sep 17 00:00:00 2001 From: Hyunjin Kim Date: Thu, 20 Jul 2023 23:20:28 +0900 Subject: [PATCH] fs: sync JSDoc with the actual implementation JSDoc update was omitted during code implementation Refs: https://github.com/nodejs/node/pull/46933 --- lib/internal/fs/promises.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/internal/fs/promises.js b/lib/internal/fs/promises.js index 74af3c9782b7a9..a63575664509df 100644 --- a/lib/internal/fs/promises.js +++ b/lib/internal/fs/promises.js @@ -255,6 +255,9 @@ class FileHandle extends EventEmitter { /** * @typedef {import('../webstreams/readablestream').ReadableStream * } ReadableStream + * @param {{ + * type?: string; + * }} [options] * @returns {ReadableStream} */ readableWebStream(options = kEmptyObject) {