Module Ext_Base


module Ext_Base: sig .. end
The root of all classes created with Ext.define.Ex ...

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
Static instance for lazy-loaded modules.
val static : statics Js.t
Static instance.
val addMembers : 'a Js.t -> unit
See method statics.addMembers
val addStatics : 'a Js.t -> 'b Js.t
See method statics.addStatics
val create : unit -> 'a Js.t
See method statics.create
val createAlias : 'a Js.t -> 'b Js.t -> unit
See method statics.createAlias
val getName : unit -> Js.js_string Js.t
See method 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