export const LEFT = 'left' export const RIGHT = 'right' export const MIDDLE = 'middle' export const X1 = 'x1' export const X2 = 'x2' export type MouseButton = | typeof LEFT | typeof RIGHT | typeof MIDDLE | typeof X1 | typeof X2