@@ -5441,7 +5441,7 @@ interface GlobalEventHandlersEventMap {
5441
5441
"animationend": AnimationEvent;
5442
5442
"animationiteration": AnimationEvent;
5443
5443
"animationstart": AnimationEvent;
5444
- "auxclick": Event ;
5444
+ "auxclick": MouseEvent ;
5445
5445
"blur": FocusEvent;
5446
5446
"cancel": Event;
5447
5447
"canplay": Event;
@@ -5534,7 +5534,7 @@ interface GlobalEventHandlers {
5534
5534
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
5535
5535
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
5536
5536
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
5537
- onauxclick: ((this: GlobalEventHandlers, ev: Event ) => any) | null;
5537
+ onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent ) => any) | null;
5538
5538
/**
5539
5539
* Fires when the object loses the input focus.
5540
5540
* @param ev The focus event.
@@ -18239,7 +18239,7 @@ declare var onanimationcancel: ((this: Window, ev: AnimationEvent) => any) | nul
18239
18239
declare var onanimationend: ((this: Window, ev: AnimationEvent) => any) | null;
18240
18240
declare var onanimationiteration: ((this: Window, ev: AnimationEvent) => any) | null;
18241
18241
declare var onanimationstart: ((this: Window, ev: AnimationEvent) => any) | null;
18242
- declare var onauxclick: ((this: Window, ev: Event ) => any) | null;
18242
+ declare var onauxclick: ((this: Window, ev: MouseEvent ) => any) | null;
18243
18243
/**
18244
18244
* Fires when the object loses the input focus.
18245
18245
* @param ev The focus event.
0 commit comments