sig
  class type t =
    object ('a)
      method _type : Js.js_string Js.t Js.prop
      method callParent : 'Js.t -> 'Js.t Js.meth
      method callSuper : 'Js.t -> 'Js.t Js.meth
      method failureType : Js.js_string Js.t Js.prop
      method getInitialConfig :
        Js.js_string Js.t Js.optdef -> 'Js.t Js.meth
      method initConfig : 'Js.t -> 'Js.t Js.meth
      method response : 'Js.t Js.prop
      method result : 'Js.t Js.prop
      method run : unit 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 _method : Js.js_string Js.t Js.prop
      method failure : 'Js.callback Js.prop
      method form : 'Js.t Js.prop
      method headers : 'Js.t Js.prop
      method params : 'Js.t Js.prop
      method reset : bool Js.t Js.prop
      method scope : 'Js.t Js.prop
      method submitEmptyText : bool Js.t Js.prop
      method success : 'Js.callback Js.prop
      method timeout : Js.number Js.t Js.prop
      method url : Js.js_string Js.t Js.prop
      method waitMsg : Js.js_string Js.t Js.prop
      method waitTitle : Js.js_string Js.t Js.prop
    end
  class type events = object  end
  class type statics =
    object
      method _CLIENT_INVALID : Js.js_string Js.t Js.prop
      method _CONNECT_FAILURE : Js.js_string Js.t Js.prop
      method _LOAD_FAILURE : Js.js_string Js.t Js.prop
      method _SERVER_INVALID : Js.js_string Js.t Js.prop
      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 get_static : unit -> Ext_form_action_Action.statics Js.t
  val static : Ext_form_action_Action.statics Js.t
  val of_configs :
    Ext_form_action_Action.configs Js.t -> Ext_form_action_Action.t Js.t
  val to_configs :
    Ext_form_action_Action.t Js.t -> Ext_form_action_Action.configs Js.t
end