From 99cbda83a2a27d38656e7d15e1a6adec626fd4b9 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 9 Mar 2026 03:41:26 +0000 Subject: [PATCH] fix(media): accept reader read result type --- src/media/read-response-with-limit.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/media/read-response-with-limit.ts b/src/media/read-response-with-limit.ts index c9ac52c8035..1c1a680e965 100644 --- a/src/media/read-response-with-limit.ts +++ b/src/media/read-response-with-limit.ts @@ -1,7 +1,7 @@ async function readChunkWithIdleTimeout( reader: ReadableStreamDefaultReader, chunkTimeoutMs: number, -): Promise> { +): Promise>> { let timeoutId: ReturnType | undefined; let timedOut = false;