diff --git a/packages/store/src/file.js b/packages/store/src/file.js index f86dc99399..b4a7426daa 100644 --- a/packages/store/src/file.js +++ b/packages/store/src/file.js @@ -64,7 +64,7 @@ export const STORE_FILE_IMAGE_TYPES = [ * }} options * @param {Partial & Pick} props - * @param {NodeJS.ReadableStream|string|Buffer} source + * @param {import("stream").Readable|string|Buffer} source * @returns {Promise} */ export async function fileCreateOrUpdate( @@ -284,9 +284,9 @@ export async function fileTransformInPlace( * }} options * @param {Partial & Pick} props - * @param {NodeJS.ReadableStream|string|Buffer} source + * @param {import("stream").Readable|string|Buffer} source * @returns {Promise<{ - * source: NodeJS.ReadableStream|string|Buffer, + * source: import("stream").Readable|string|Buffer, * contentType: string, * }>} */