dualsense-ts
Version:
The natural interface for your DualSense and DualSense Access controllers, with Typescript
14 lines • 591 B
TypeScript
import { AccessPlayerIndicator } from "../hid/access/access_hid_state";
/** Controls the player indicator LED pattern on the Access controller (6-segment cross) */
export declare class AccessPlayerIndicatorLed {
private _pattern;
/** Get the current pattern */
get pattern(): AccessPlayerIndicator;
/** Set the player indicator pattern */
set(pattern: AccessPlayerIndicator): void;
/** Turn off the player indicator */
clear(): void;
/** Returns a string key for change detection */
toKey(): string;
}
//# sourceMappingURL=access_player_indicator.d.ts.map