@pixui-dev/pxw 0.1.33 → 0.1.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1466,6 +1466,8 @@ declare global {
1466
1466
  onerror: ((this: WindowEventHandlers, ev: ErrorEvent) => any) | null;
1467
1467
  onresize: ((this: WindowEventHandlers, ev: Event) => any) | null;
1468
1468
  onscreenresize: ((this: WindowEventHandlers, ev: Event) => any) | null;
1469
+ ongamepadconnected: ((this: WindowEventHandlers, ev: GamepadEvent) => any) | null;
1470
+ ongamepaddisconnected: ((this: WindowEventHandlers, ev: GamepadEvent) => any) | null;
1469
1471
  }
1470
1472
 
1471
1473
  interface WindowEventHandlersEventMap {
@@ -1479,6 +1481,8 @@ declare global {
1479
1481
  error: ErrorEvent;
1480
1482
  resize: Event;
1481
1483
  screenresize: Event;
1484
+ gamepadconnected: GamepadEvent;
1485
+ gamepaddisconnected: GamepadEvent;
1482
1486
  }
1483
1487
 
1484
1488
  interface AudioEventHandlers extends EventHandlers {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pixui-dev/pxw",
3
- "version": "0.1.33",
3
+ "version": "0.1.34",
4
4
  "private": false,
5
5
  "directories": {
6
6
  "lib": "lib"