sig
  class type t =
    object ('a)
      method abort : unit Js.meth
      method addEvents : 'Js.t -> unit Js.meth
      method addListener :
        'Js.t ->
        'Js.callback Js.optdef ->
        'Js.t Js.optdef -> 'Js.t Js.optdef -> 'Js.t Js.meth
      method addManagedListener :
        'Js.t ->
        'Js.t ->
        'Js.callback Js.optdef ->
        'Js.t Js.optdef -> 'Js.t Js.optdef -> 'Js.t Js.meth
      method callParent : 'Js.t -> 'Js.t Js.meth
      method callSuper : 'Js.t -> 'Js.t Js.meth
      method clearListeners : unit Js.meth
      method clearManagedListeners : unit Js.meth
      method destroy : unit Js.meth
      method enableBubble : 'Js.t -> unit Js.meth
      method fireEvent : Js.js_string Js.t -> 'Js.t -> bool Js.t Js.meth
      method fireEventArgs :
        Js.js_string Js.t -> 'Js.t Js.js_array Js.t -> bool Js.t Js.meth
      method getInitialConfig :
        Js.js_string Js.t Js.optdef -> 'Js.t Js.meth
      method getTarget : 'Js.t Js.meth
      method hasListener : Js.js_string Js.t -> bool Js.t Js.meth
      method hasListeners : 'Js.t Js.readonly_prop
      method initConfig : 'Js.t -> 'Js.t Js.meth
      method isAutoRefreshing : bool Js.t Js.meth
      method isLoader : bool Js.t Js.prop
      method isObservable : bool Js.t Js.prop
      method load : 'Js.t -> unit Js.meth
      method mon :
        'Js.t ->
        'a1 Js.t ->
        'b1 Js.callback Js.optdef ->
        'c1 Js.t Js.optdef -> 'd1 Js.t Js.optdef -> 'e1 Js.t Js.meth
      method mun :
        'f1 Js.t ->
        'g1 Js.t ->
        'h1 Js.callback Js.optdef -> 'i1 Js.t Js.optdef -> unit Js.meth
      method on :
        'j1 Js.t ->
        'k1 Js.callback Js.optdef ->
        'l1 Js.t Js.optdef -> 'm1 Js.t Js.optdef -> 'n1 Js.t Js.meth
      method relayEvents :
        'o1 Js.t ->
        Js.js_string Js.t Js.js_array Js.t ->
        Js.js_string Js.t Js.optdef -> 'p1 Js.t Js.meth
      method removeListener :
        Js.js_string Js.t ->
        'q1 Js.callback -> 'r1 Js.t Js.optdef -> unit Js.meth
      method removeManagedListener :
        's1 Js.t ->
        't1 Js.t ->
        'u1 Js.callback Js.optdef -> 'v1 Js.t Js.optdef -> unit Js.meth
      method resumeEvent : Js.js_string Js.t -> unit Js.meth
      method resumeEvents : unit Js.meth
      method self : Ext_Class.t Js.t Js.prop
      method setTarget : 'w1 Js.t -> unit Js.meth
      method startAutoRefresh :
        Js.number Js.t -> 'x1 Js.t Js.optdef -> unit Js.meth
      method statics : Ext_Class.t Js.t Js.meth
      method stopAutoRefresh : unit Js.meth
      method suspendEvent : Js.js_string Js.t -> unit Js.meth
      method suspendEvents : bool Js.t -> unit Js.meth
      method un :
        Js.js_string Js.t ->
        'y1 Js.callback -> 'z1 Js.t Js.optdef -> unit Js.meth
    end
  class type configs =
    object
      method ajaxOptions : 'Js.t Js.prop
      method autoLoad : 'Js.t Js.prop
      method baseParams : 'Js.t Js.prop
      method callback : 'Js.callback Js.prop
      method failure : 'Js.callback Js.prop
      method listeners : 'Js.t Js.prop
      method loadMask : 'Js.t Js.prop
      method params : 'Js.t Js.prop
      method renderer : 'Js.callback Js.prop
      method renderer_2 : 'Js.t Js.prop
      method scope : 'Js.t Js.prop
      method scripts : bool Js.t Js.prop
      method success : 'Js.callback Js.prop
      method target : 'Js.t Js.prop
      method url : Js.js_string Js.t Js.prop
    end
  class type events =
    object
      method _exception :
        (Ext_ElementLoader.t Js.t -> 'Js.t -> 'Js.t -> 'Js.t -> unit)
        Js.callback Js.writeonly_prop
      method beforeload :
        (Ext_ElementLoader.t Js.t -> 'Js.t -> 'Js.t -> unit) Js.callback
        Js.writeonly_prop
      method load :
        (Ext_ElementLoader.t Js.t -> 'Js.t -> 'Js.t -> 'Js.t -> unit)
        Js.callback Js.writeonly_prop
    end
  class type statics =
    object
      method addMembers : 'Js.t -> unit Js.meth
      method addStatics : 'Js.t -> 'Js.t Js.meth
      method capture :
        'Js.t -> 'Js.callback -> 'Js.t Js.optdef -> unit Js.meth
      method create : 'Js.t Js.meth
      method createAlias : 'Js.t -> 'Js.t -> unit Js.meth
      method getName : Js.js_string Js.t Js.meth
      method observe : 'Js.callback -> 'Js.t -> unit Js.meth
      method releaseCapture : 'Js.t -> unit Js.meth
    end
  val of_configs :
    Ext_ComponentLoader.configs Js.t -> Ext_ComponentLoader.t Js.t
  val to_configs :
    Ext_ComponentLoader.t Js.t -> Ext_ComponentLoader.configs Js.t
end