@itwin/core-react
Version:
A react component library of iTwin.js UI general purpose components
19 lines • 824 B
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
/** @packageDocumentation
* @module Common
*/
/**
* Enumeration for sorting direction.
* @public
* @deprecated in 4.15.0. Not used by AppUI.
*/
export var SortDirection;
(function (SortDirection) {
SortDirection[SortDirection["NoSort"] = 0] = "NoSort";
SortDirection[SortDirection["Ascending"] = 1] = "Ascending";
SortDirection[SortDirection["Descending"] = 2] = "Descending";
})(SortDirection || (SortDirection = {}));
//# sourceMappingURL=SortDirection.js.map