import { SyntheticMouseEvent } from '../../SyntheticMouseEvent'; import { NativeEvent } from './NativeEvent'; export class NativeMouseEvent extends NativeEvent { static map(e: any) { return new SyntheticMouseEvent(e.x, e.y, e.button, e.buttons, NativeEvent.convertModifiers(e.modifiers)); } static readonly syntheticEvent = SyntheticMouseEvent; }