sig
  class type t =
    object ('a)
      method callParent : 'Js.t -> 'Js.t Js.meth
      method callSuper : 'Js.t -> 'Js.t Js.meth
      method generateComparator : unit Js.meth
      method getFirstSorter : Ext_util_Sorter.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 initSortable : unit Js.meth
      method isSortable : bool Js.t Js.prop
      method self : Ext_Class.t Js.t Js.prop
      method sort :
        'Js.t Js.optdef ->
        Js.js_string Js.t Js.optdef ->
        Ext_util_Sorter.t Js.js_array Js.t Js.meth
      method sorters : 'Js.t Js.prop
      method statics : Ext_Class.t Js.t Js.meth
    end
  class type configs =
    object
      method defaultSortDirection : Js.js_string Js.t Js.prop
      method sortRoot : Js.js_string Js.t Js.prop
      method sorters : '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 createComparator :
        Ext_util_Sorter.t Js.js_array Js.t -> 'Js.callback Js.meth
      method getName : Js.js_string Js.t Js.meth
    end
  val get_static : unit -> Ext_util_Sortable.statics Js.t
  val static : Ext_util_Sortable.statics Js.t
  val createComparator : Ext_util_Sorter.t Js.js_array Js.t -> 'Js.callback
  val of_configs : Ext_util_Sortable.configs Js.t -> Ext_util_Sortable.t Js.t
  val to_configs : Ext_util_Sortable.t Js.t -> Ext_util_Sortable.configs Js.t
end