From 92d567d3562600b2b06791353eeccf8f1d5c4f0f Mon Sep 17 00:00:00 2001 From: Victor Turansky Date: Wed, 10 Jul 2024 11:09:15 +0400 Subject: [PATCH] fix(ext/webgpu): fix `GPUUncapturedErrorEvent` parent type (#24369) https://developer.mozilla.org/en-US/docs/Web/API/GPUUncapturedErrorEvent Signed-off-by: Victor Turansky --- cli/tsc/dts/lib.deno_webgpu.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/tsc/dts/lib.deno_webgpu.d.ts b/cli/tsc/dts/lib.deno_webgpu.d.ts index 73d6d71c9a..12ef5e6c50 100644 --- a/cli/tsc/dts/lib.deno_webgpu.d.ts +++ b/cli/tsc/dts/lib.deno_webgpu.d.ts @@ -1706,7 +1706,7 @@ declare type GPUErrorFilter = "out-of-memory" | "validation" | "internal"; * @category GPU * @experimental */ -declare class GPUUncapturedErrorEvent extends EventTarget { +declare class GPUUncapturedErrorEvent extends Event { constructor( type: string, gpuUncapturedErrorEventInitDict: GPUUncapturedErrorEventInit,