// tslint:disable-next-line1import { UnixTimestamp } from './GenericTypes';23/**4* Buttons are a bit field from the DOM5* 0 No button pressed6* 1 Main button pressed (usually the left button)7* 2 Secondary button pressed (usually the right button)8* 4 Auxiliary button pressed (usually the middle button)9*/1011type PageX = number;12type PageY = number;13type OffsetX = number;14type OffsetY = number;15type NodeId = number;16type Buttons = number;17type RelatedNodeId = NodeId;18type MouseEventType = number;1920export type IMouseEvent = [21MouseEventType,22PageX,23PageY,24OffsetX,25OffsetY,26Buttons,27NodeId,28RelatedNodeId,29UnixTimestamp,30];313233