mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 15:40:28 +00:00
7 lines
215 B
Text
7 lines
215 B
Text
// https://w3c.github.io/gamepad/#dom-gamepadbutton
|
|
[Exposed=Window]
|
|
interface GamepadButton {
|
|
readonly attribute boolean pressed;
|
|
readonly attribute boolean touched;
|
|
readonly attribute double value;
|
|
};
|