sig
  class type t =
    object ('a)
      method callParent : 'Js.t -> 'Js.t Js.meth
      method callSuper : 'Js.t -> '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 self : Ext_Class.t Js.t Js.prop
      method statics : Ext_Class.t Js.t Js.meth
    end
  class type configs =
    object
      method _type : 'Js.t Js.prop
      method convert : 'Js.callback Js.prop
      method dateFormat : Js.js_string Js.t Js.prop
      method dateReadFormat : Js.js_string Js.t Js.prop
      method dateWriteFormat : Js.js_string Js.t Js.prop
      method defaultValue : 'Js.t Js.prop
      method mapping : 'Js.t Js.prop
      method name : Js.js_string Js.t Js.prop
      method persist : bool Js.t Js.prop
      method serialize : 'Js.callback Js.prop
      method sortDir : Js.js_string Js.t Js.prop
      method sortType : 'Js.t Js.prop
      method useNull : 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 getName : Js.js_string Js.t Js.meth
    end
  val of_configs : Ext_data_Field.configs Js.t -> Ext_data_Field.t Js.t
  val to_configs : Ext_data_Field.t Js.t -> Ext_data_Field.configs Js.t
end