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

11 lines
269 B
TypeScript
Raw Normal View History

2022-11-26 01:22:02 +00:00
export declare class BaseInput {
protected element: HTMLElement;
protected active: boolean;
constructor(element: HTMLElement);
getState(): any;
capture(preventDefault: boolean): void;
release(): void;
}
export interface IBaseInput {
}