Skip to content

Commit 0296ec9

Browse files
committed
Restore accidentally removed GPU types and update baselines with generalized undefined
1 parent d257f9a commit 0296ec9

33 files changed

+9845
-253
lines changed

baselines/audioworklet.generated.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ interface EventTarget {
702702
*
703703
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/addEventListener)
704704
*/
705-
addEventListener(type: string, callback: EventListenerOrEventListenerObject | null, options?: AddEventListenerOptions | boolean): void;
705+
addEventListener(type: string, callback: EventListener | null, options?: AddEventListenerOptions | boolean): void;
706706
/**
707707
* The **`dispatchEvent()`** method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order. The normal event processing rules (including the capturing and optional bubbling phase) also apply to events dispatched manually with dispatchEvent().
708708
*
@@ -714,7 +714,7 @@ interface EventTarget {
714714
*
715715
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/removeEventListener)
716716
*/
717-
removeEventListener(type: string, callback: EventListenerOrEventListenerObject | null, options?: EventListenerOptions | boolean): void;
717+
removeEventListener(type: string, callback: EventListener | null, options?: EventListenerOptions | boolean): void;
718718
}
719719

720720
declare var EventTarget: {

baselines/dom.generated.d.ts

Lines changed: 612 additions & 6 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)