Files
assassin-bug/framework/input/inputs/base-input.d.ts
2022-11-26 02:22:02 +01:00

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 {
}