sig
class type t =
object ('a)
method callParent : 'b Js.t -> 'c Js.t Js.meth
method callSuper : 'd Js.t -> 'e Js.t Js.meth
method getInitialConfig :
Js.js_string Js.t Js.optdef -> 'f Js.t Js.meth
method initConfig : 'g Js.t -> 'a Js.t Js.meth
method self : Ext_Class.t Js.t Js.prop
method statics : Ext_Class.t Js.t Js.meth
end
class type configs = object end
class type events = object end
class type statics =
object
method addMembers : 'a Js.t -> unit Js.meth
method addStatics : 'b Js.t -> 'c Js.t Js.meth
method create : 'd Js.t Js.meth
method createAlias : 'e Js.t -> 'f Js.t -> unit Js.meth
method getName : Js.js_string Js.t Js.meth
end
val get_static : unit -> Ext_Base.statics Js.t
val static : Ext_Base.statics Js.t
val addMembers : 'a Js.t -> unit
val addStatics : 'a Js.t -> 'b Js.t
val create : unit -> 'a Js.t
val createAlias : 'a Js.t -> 'b Js.t -> unit
val getName : unit -> Js.js_string Js.t
val of_configs : Ext_Base.configs Js.t -> Ext_Base.t Js.t
val to_configs : Ext_Base.t Js.t -> Ext_Base.configs Js.t
end