mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-23 00:19:18 +00:00
14 lines
408 B
Text
14 lines
408 B
Text
#import <DOM/Event.idl>
|
|
#import <Gamepad/Gamepad.idl>
|
|
|
|
// https://w3c.github.io/gamepad/#dom-gamepadevent
|
|
[Exposed=Window]
|
|
interface GamepadEvent : Event {
|
|
constructor(DOMString type, GamepadEventInit eventInitDict);
|
|
[SameObject] readonly attribute Gamepad gamepad;
|
|
};
|
|
|
|
// https://w3c.github.io/gamepad/#dom-gamepadeventinit
|
|
dictionary GamepadEventInit : EventInit {
|
|
required Gamepad gamepad;
|
|
};
|