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