@types/gamepad
TypeScript icon, indicating that this package has built-in type declarations

1.5.3 • Public • Published

Installation

npm install --save @types/gamepad

Summary

This package contains type definitions for gamepad (https://github.com/creationix/node-gamepad#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gamepad.

index.d.ts

import { EventEmitter } from "events";

declare const nodeGamepad: NodeGamepad;
export = nodeGamepad;

interface NodeGamepad extends EventEmitter {
    init(): void;
    shutdown(): void;
    numDevices(): number;
    deviceAtIndex(deviceIndex: number): GamepadInstance;
    detectDevices(): void;
    processEvents(): void;

    on(event: "attach", listener: (deviceID: number, device: GamepadInstance) => void): this;
    on(event: "remove", listener: (deviceID: number) => void): this;
    on(event: "down" | "up", listener: (deviceID: number, buttonID: number, timestamp: number) => void): this;
    on(
        event: "move",
        listener: (deviceID: number, axisID: number, value: number, lastValue: number, timestamp: number) => void,
    ): this;
}

interface GamepadInstance {
    deviceID: number;
    description: string;
    vendorID: number;
    productID: number;
    axisStates: number[];
    buttonStates: boolean[];
}

Additional Details

  • Last updated: Tue, 07 Nov 2023 03:09:37 GMT
  • Dependencies: none

Credits

These definitions were written by Alex Van Camp.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/gamepad

Weekly Downloads

20

Version

1.5.3

License

MIT

Unpacked Size

4.4 kB

Total Files

5

Last publish

Collaborators

  • types