001package react4j.dom.events; 002 003import jsinterop.annotations.JsPackage; 004import jsinterop.annotations.JsType; 005 006/** 007 * Opaque binding for a browser {@code EventTarget}. 008 * 009 * <p>Use {@code Js.uncheckedCast(target)} to convert this value to the target type supplied by the 010 * browser JsInterop library used by the application.</p> 011 */ 012@JsType( isNative = true, namespace = JsPackage.GLOBAL, name = "EventTarget" ) 013public class EventTarget 014{ 015 protected EventTarget() 016 { 017 } 018}