From 2792cc23422e5d6475584c8577e775accf777399 Mon Sep 17 00:00:00 2001 From: Victor Turansky Date: Sun, 30 Jun 2024 01:14:18 +0300 Subject: [PATCH] WebGPU. Fix `GPUUncapturedErrorEvent ` parent type 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 73d6d71c9aeef3..12ef5e6c503e10 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,