module Ext_Base:The root of all classes created with Ext.define.Ex ...sig
..end
The root of all classes created with Ext.define.
Ext.Base is the building block of all Ext classes. All classes in Ext inherit from Ext.Base. All prototype and static members of this class are inherited by all other classes.
class type t =object
..end
class type configs =object
..end
class type events =object
..end
class type statics =object
..end
val get_static : unit -> statics Js.t
val static : statics Js.t
val addMembers : 'a Js.t -> unit
statics.addMembers
val addStatics : 'a Js.t -> 'b Js.t
statics.addStatics
val create : unit -> 'a Js.t
statics.create
val createAlias : 'a Js.t -> 'b Js.t -> unit
statics.createAlias
val getName : unit -> Js.js_string Js.t
statics.getName
val of_configs : configs Js.t -> t Js.t
of_configs c
casts a config object c
to an instance of class t
val to_configs : t Js.t -> configs Js.t
to_configs o
casts instance o
of class t
to a config object