@@ -18378,6 +18378,8 @@ interface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandler
1837818378 "ended": Event;
1837918379 "error": ErrorEvent;
1838018380 "focus": FocusEvent;
18381+ "gamepadconnected": GamepadEvent;
18382+ "gamepaddisconnected": GamepadEvent;
1838118383 "hashchange": HashChangeEvent;
1838218384 "input": Event;
1838318385 "invalid": Event;
@@ -18481,6 +18483,8 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
1848118483 ondevicemotion: ((this: Window, ev: DeviceMotionEvent) => any) | null;
1848218484 ondeviceorientation: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
1848318485 ondeviceorientationabsolute: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
18486+ ongamepadconnected: ((this: Window, ev: GamepadEvent) => any) | null;
18487+ ongamepaddisconnected: ((this: Window, ev: GamepadEvent) => any) | null;
1848418488 onmousewheel: ((this: Window, ev: Event) => any) | null;
1848518489 onmsgesturechange: ((this: Window, ev: Event) => any) | null;
1848618490 onmsgesturedoubletap: ((this: Window, ev: Event) => any) | null;
@@ -19525,6 +19529,8 @@ declare var ondevicelight: ((this: Window, ev: DeviceLightEvent) => any) | null;
1952519529declare var ondevicemotion: ((this: Window, ev: DeviceMotionEvent) => any) | null;
1952619530declare var ondeviceorientation: ((this: Window, ev: DeviceOrientationEvent) => any) | null;
1952719531declare 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;
1952819534declare var onmousewheel: ((this: Window, ev: Event) => any) | null;
1952919535declare var onmsgesturechange: ((this: Window, ev: Event) => any) | null;
1953019536declare var onmsgesturedoubletap: ((this: Window, ev: Event) => any) | null;
0 commit comments