From 49feb34789740f21d255388a73bd3160e4ce5a07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linus=20Unneb=C3=A4ck?= Date: Wed, 9 Oct 2024 17:05:39 +0200 Subject: [PATCH] Add missing generic parameter to ReadableStream type This was added to the upstream dom typings in the Nov 2018 update. ref: https://github.com/microsoft/TypeScript/commit/b830ef82147e9448bd63df17006a086e937feddb https://github.com/microsoft/TypeScript/pull/28343 https://github.com/microsoft/TypeScript-DOM-lib-generator/pull/541 --- packages/types/src/serde.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/types/src/serde.ts b/packages/types/src/serde.ts index 1881d40fb4e4b..03fb3ff29ac08 100644 --- a/packages/types/src/serde.ts +++ b/packages/types/src/serde.ts @@ -26,7 +26,7 @@ declare global { /** * @public */ - export interface ReadableStream {} + export interface ReadableStream {} /** * @public */