001package react4j.dom.events;
002
003import jsinterop.annotations.JsFunction;
004
005@JsFunction
006@FunctionalInterface
007public interface MouseEventHandler
008{
009  void onMouseEvent( MouseEvent event );
010}