mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -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
|
* @category GPU
|
||||||
* @experimental
|
* @experimental
|
||||||
*/
|
*/
|
||||||
declare class GPUUncapturedErrorEvent extends EventTarget {
|
declare class GPUUncapturedErrorEvent extends Event {
|
||||||
constructor(
|
constructor(
|
||||||
type: string,
|
type: string,
|
||||||
gpuUncapturedErrorEventInitDict: GPUUncapturedErrorEventInit,
|
gpuUncapturedErrorEventInitDict: GPUUncapturedErrorEventInit,
|
||||||
|
|
Loading…
Reference in a new issue