7 lines
170 B
TypeScript
7 lines
170 B
TypeScript
|
import { BaseInput } from './base-input';
|
||
|
export declare class Joystick extends BaseInput {
|
||
|
constructor(element: HTMLElement);
|
||
|
}
|
||
|
export interface IJoystick {
|
||
|
}
|