assassin-bug/framework/input/inputs/base-input.d.ts

11 lines
269 B
TypeScript

export declare class BaseInput {
protected element: HTMLElement;
protected active: boolean;
constructor(element: HTMLElement);
getState(): any;
capture(preventDefault: boolean): void;
release(): void;
}
export interface IBaseInput {
}