Your IP : 216.73.217.77


Current Path : /home/emeraadmin/www/node_modules/react-virtualized/dist/commonjs/Table/
Upload File :
Current File : /home/emeraadmin/www/node_modules/react-virtualized/dist/commonjs/Table/SortDirection.js

"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports["default"] = void 0;
var SortDirection = {
  /**
   * Sort items in ascending order.
   * This means arranging from the lowest value to the highest (e.g. a-z, 0-9).
   */
  ASC: 'ASC',

  /**
   * Sort items in descending order.
   * This means arranging from the highest value to the lowest (e.g. z-a, 9-0).
   */
  DESC: 'DESC'
};
var _default = SortDirection;
exports["default"] = _default;