sig
  class type t =
    object ('a)
      method append :
        'Js.t -> 'Js.t -> bool Js.t Js.optdef -> 'Js.t Js.meth
      method apply : 'Js.t -> Js.js_string Js.t Js.meth
      method applyOut :
        'Js.t -> 'Js.js_array Js.t -> 'Js.js_array Js.t Js.meth
      method applyTemplate : 'Js.t -> Js.js_string Js.t Js.meth
      method callParent : 'Js.t -> 'Js.t Js.meth
      method callSuper : 'Js.t -> 'Js.t Js.meth
      method compile : 'Js.t Js.meth
      method getInitialConfig :
        Js.js_string Js.t Js.optdef -> 'Js.t Js.meth
      method initConfig : 'Js.t -> 'Js.t Js.meth
      method insertAfter :
        'Js.t -> 'Js.t -> bool Js.t Js.optdef -> 'Js.t Js.meth
      method insertBefore :
        'Js.t -> 'Js.t -> bool Js.t Js.optdef -> 'Js.t Js.meth
      method insertFirst :
        'Js.t -> 'Js.t -> bool Js.t Js.optdef -> 'Js.t Js.meth
      method isTemplate : bool Js.t Js.prop
      method overwrite :
        'Js.t -> 'Js.t -> bool Js.t Js.optdef -> 'a1 Js.t Js.meth
      method self : Ext_Class.t Js.t Js.prop
      method set :
        Js.js_string Js.t -> bool Js.t Js.optdef -> 'Js.t Js.meth
      method statics : Ext_Class.t Js.t Js.meth
    end
  class type configs =
    object
      method compiled : bool Js.t Js.prop
      method disableFormats : bool Js.t Js.prop
    end
  class type events = object  end
  class type statics =
    object
      method addMembers : 'Js.t -> unit Js.meth
      method addStatics : 'Js.t -> 'Js.t Js.meth
      method create : 'Js.t Js.meth
      method createAlias : 'Js.t -> 'Js.t -> unit Js.meth
      method from : 'Js.t -> 'Js.t Js.optdef -> 'Js.t Js.meth
      method getName : Js.js_string Js.t Js.meth
    end
  val get_static : unit -> Ext_Template.statics Js.t
  val static : Ext_Template.statics Js.t
  val from : 'Js.t -> 'Js.t Js.optdef -> 'Js.t
  val of_configs : Ext_Template.configs Js.t -> Ext_Template.t Js.t
  val to_configs : Ext_Template.t Js.t -> Ext_Template.configs Js.t
end