mirror of
https://github.com/denoland/deno.git
synced 2025-10-01 06:31:15 +00:00
feat: WebGPU API (#7977)
Co-authored-by: Luca Casonato <lucacasonato@yahoo.com>
This commit is contained in:
parent
dbdbe7a1cf
commit
7cd14f97c9
42 changed files with 15302 additions and 1 deletions
|
@ -1204,6 +1204,7 @@
|
|||
window.removeEventListener = EventTarget.prototype.removeEventListener;
|
||||
window.__bootstrap = (window.__bootstrap || {});
|
||||
window.__bootstrap.eventTarget = {
|
||||
EventTarget,
|
||||
setEventTargetData,
|
||||
};
|
||||
window.__bootstrap.event = {
|
||||
|
|
4
op_crates/web/internal.d.ts
vendored
4
op_crates/web/internal.d.ts
vendored
|
@ -270,6 +270,10 @@ declare namespace globalThis {
|
|||
): (v: any, opts: ValueConverterOpts) => any;
|
||||
}
|
||||
|
||||
declare var eventTarget: {
|
||||
EventTarget: typeof EventTarget;
|
||||
};
|
||||
|
||||
declare var url: {
|
||||
URLSearchParams: typeof URLSearchParams;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue