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:
parent
26bf4480ff
commit
92d567d356
1 changed files with 1 additions and 1 deletions
2
cli/tsc/dts/lib.deno_webgpu.d.ts
vendored
2
cli/tsc/dts/lib.deno_webgpu.d.ts
vendored
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue