UNPKG

@foblex/core

Version:

A core library providing a set of utilities and interfaces for various projects.

9 lines (8 loc) 302 B
import { IPointerEvent } from './i-pointer-event'; import { IPoint } from '../../types'; export declare class IMouseEvent extends IPointerEvent { constructor(event: MouseEvent, target?: HTMLElement); isMouseLeftButton(): boolean; isMouseRightButton(): boolean; getPosition(): IPoint; }