19 lines
440 B
TypeScript
19 lines
440 B
TypeScript
|
export declare const MOUSE: {
|
||
|
CLICK: string;
|
||
|
DBLCLICK: string;
|
||
|
DOWN: string;
|
||
|
UP: string;
|
||
|
OVER: string;
|
||
|
OUT: string;
|
||
|
MOVE: string;
|
||
|
SELECTEND: string;
|
||
|
SELECTSTART: string;
|
||
|
};
|
||
|
export interface MouseNavigatable {
|
||
|
mousedown(event: MouseEvent): void;
|
||
|
mouseup(event: MouseEvent): void;
|
||
|
mouseover(event: MouseEvent): void;
|
||
|
mouseout(event: MouseEvent): void;
|
||
|
click(event: MouseEvent): void;
|
||
|
}
|