Module IEvent


module IEvent: sig .. end

val get_type : this:[> `Event ] GdomeT.t -> TDOMString.t
val get_target : this:[> `Event ] GdomeT.t -> TEventTarget.t
val get_currentTarget : this:[> `Event ] GdomeT.t -> TEventTarget.t
val get_eventPhase : this:[> `Event ] GdomeT.t -> int
val get_bubbles : this:[> `Event ] GdomeT.t -> bool
val get_cancelable : this:[> `Event ] GdomeT.t -> bool
val get_timeStamp : this:[> `Event ] GdomeT.t -> TDOMTimeStamp.t
val stopPropagation : this:[> `Event ] GdomeT.t -> unit
val preventDefault : this:[> `Event ] GdomeT.t -> unit
val initEvent : this:[> `Event ] GdomeT.t ->
eventTypeArg:TDOMString.t -> canBubbleArg:bool -> cancelableArg:bool -> unit