diff options
author | Victor Turansky <victor.turansky@gmail.com> | 2024-07-10 11:09:15 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-10 12:39:15 +0530 |
commit | 92d567d3562600b2b06791353eeccf8f1d5c4f0f (patch) | |
tree | a9fd3e8f3cd190742ad630a23426bdfade3bcd36 /cli/tsc/dts/lib.deno_webgpu.d.ts | |
parent | 26bf4480ff5b6f72b40997618d4020127eb5b0ba (diff) |
fix(ext/webgpu): fix `GPUUncapturedErrorEvent` parent type (#24369)
https://developer.mozilla.org/en-US/docs/Web/API/GPUUncapturedErrorEvent
Signed-off-by: Victor Turansky <victor.turansky@gmail.com>
Diffstat (limited to 'cli/tsc/dts/lib.deno_webgpu.d.ts')
-rw-r--r-- | cli/tsc/dts/lib.deno_webgpu.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc/dts/lib.deno_webgpu.d.ts b/cli/tsc/dts/lib.deno_webgpu.d.ts index 73d6d71c9..12ef5e6c5 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, |