@@ -18378,6 +18378,8 @@ interface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandler
18378
18378
"ended": Event;
18379
18379
"error": ErrorEvent;
18380
18380
"focus": FocusEvent;
18381
+ "gamepadconnected": GamepadEvent;
18382
+ "gamepaddisconnected": GamepadEvent;
18381
18383
"hashchange": HashChangeEvent;
18382
18384
"input": Event;
18383
18385
"invalid": Event;
@@ -18481,6 +18483,8 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
18481
18483
ondevicemotion: ((this: Window, ev: DeviceMotionEvent) => any) | null;
18482
18484
ondeviceorientation: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
18483
18485
ondeviceorientationabsolute: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
18486
+ ongamepadconnected: ((this: Window, ev: GamepadEvent) => any) | null;
18487
+ ongamepaddisconnected: ((this: Window, ev: GamepadEvent) => any) | null;
18484
18488
onmousewheel: ((this: Window, ev: Event) => any) | null;
18485
18489
onmsgesturechange: ((this: Window, ev: Event) => any) | null;
18486
18490
onmsgesturedoubletap: ((this: Window, ev: Event) => any) | null;
@@ -19525,6 +19529,8 @@ declare var ondevicelight: ((this: Window, ev: DeviceLightEvent) => any) | null;
19525
19529
declare var ondevicemotion: ((this: Window, ev: DeviceMotionEvent) => any) | null;
19526
19530
declare var ondeviceorientation: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
19527
19531
declare var ondeviceorientationabsolute: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
19532
+ declare var ongamepadconnected: ((this: Window, ev: GamepadEvent) => any) | null;
19533
+ declare var ongamepaddisconnected: ((this: Window, ev: GamepadEvent) => any) | null;
19528
19534
declare var onmousewheel: ((this: Window, ev: Event) => any) | null;
19529
19535
declare var onmsgesturechange: ((this: Window, ev: Event) => any) | null;
19530
19536
declare var onmsgesturedoubletap: ((this: Window, ev: Event) => any) | null;
0 commit comments