TMutationEvent.t ->
object
  method as_Event : TEvent.t
  method as_MutationEvent : TMutationEvent.t
  method get_attrChange : int
  method get_attrName : Gdome.domString option
  method get_bubbles : bool
  method get_cancelable : bool
  method get_currentTarget : Gdome.eventTarget
  method get_eventPhase : int
  method get_newValue : Gdome.domString option
  method get_prevValue : Gdome.domString option
  method get_relatedNode : Gdome.node option
  method get_target : Gdome.eventTarget
  method get_timeStamp : TDOMTimeStamp.t
  method get_type : Gdome.domString
  method initEvent :
    eventTypeArg:Gdome.domString ->
    canBubbleArg:bool -> cancelableArg:bool -> unit
  method initMutationEvent :
    typeArg:Gdome.domString ->
    canBubbleArg:bool ->
    cancelableArg:bool ->
    relatedNodeArg:Gdome.node option ->
    prevValueArg:Gdome.domString option ->
    newValueArg:Gdome.domString option ->
    attrNameArg:Gdome.domString option -> attrChangeArg:int option -> unit
  method preventDefault : unit
  method stopPropagation : unit
end