UNPKG

vigemclient

Version:

Native bindings to the ViGem virtual gamepad driver

11 lines (8 loc) 243 B
import { ViGEmTarget } from "./ViGEmTarget"; export class InputButton<T extends ViGEmTarget<any, any>> { constructor(parent: T, name: string); get name(): string; get parent(): T; get value(): boolean; setValue(value: boolean): void; }