sig
  class type t = object method toString : Js.js_string Js.t Js.meth end
  class type configs = object  end
  class type events = object  end
  class type statics =
    object
      method _raise : 'Js.t -> unit Js.meth
      method handle : 'Js.t -> unit Js.meth
      method ignore : bool Js.t Js.prop
      method notify : bool Js.t Js.prop
    end
  val get_static : unit -> Ext_Error.statics Js.t
  val static : Ext_Error.statics Js.t
  val handle : 'Js.t -> unit
  val _raise : 'Js.t -> unit
  val of_configs : Ext_Error.configs Js.t -> Ext_Error.t Js.t
  val to_configs : Ext_Error.t Js.t -> Ext_Error.configs Js.t
end