sig
  class type t =
    object ('a)
      method actionCommitRecordsRe : Regexp.regexp Js.t Js.prop
      method actionSkipSyncRe : Regexp.regexp Js.t Js.prop
      method allowWrite : bool Js.t Js.meth
      method callParent : 'Js.t -> 'Js.t Js.meth
      method callSuper : 'Js.t -> 'Js.t Js.meth
      method commitRecords :
        Ext_data_Model.t Js.js_array Js.t -> unit Js.meth
      method getError : 'Js.t Js.meth
      method getInitialConfig :
        Js.js_string Js.t Js.optdef -> 'Js.t Js.meth
      method getRecords : Ext_data_Model.t Js.js_array Js.t Js.meth
      method getResultSet : Ext_data_ResultSet.t Js.t Js.meth
      method hasException : bool Js.t Js.meth
      method initConfig : 'Js.t -> 'Js.t Js.meth
      method isComplete : bool Js.t Js.meth
      method isRunning : bool Js.t Js.meth
      method isStarted : bool Js.t Js.meth
      method self : Ext_Class.t Js.t Js.prop
      method setCompleted : unit Js.meth
      method setException : 'Js.t Js.optdef -> unit Js.meth
      method setStarted : unit Js.meth
      method setSuccessful : unit Js.meth
      method statics : Ext_Class.t Js.t Js.meth
      method wasSuccessful : bool Js.t Js.meth
    end
  class type configs =
    object
      method action : Js.js_string Js.t Js.prop
      method batch : 'Js.t Js.prop
      method callback : 'Js.callback Js.prop
      method filters : Ext_util_Filter.t Js.js_array Js.t Js.prop
      method groupers : Ext_util_Grouper.t Js.js_array Js.t Js.prop
      method limit : Js.number Js.t Js.prop
      method params : 'Js.t Js.prop
      method scope : 'Js.t Js.prop
      method sorters : Ext_util_Sorter.t Js.js_array Js.t Js.prop
      method start : Js.number Js.t Js.prop
      method synchronous : 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_Operation.configs Js.t -> Ext_data_Operation.t Js.t
  val to_configs :
    Ext_data_Operation.t Js.t -> Ext_data_Operation.configs Js.t
end