1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

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>
This commit is contained in:
Victor Turansky 2024-07-10 11:09:15 +04:00 committed by GitHub
parent 26bf4480ff
commit 92d567d356
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,