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