@progress/kendo-react-grid
Version:
React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package
27 lines (26 loc) • 844 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { ColumnSortSettings, SortSettings } from '@progress/kendo-react-data-tools';
/**
* The settings for sorting the Grid columns.
*/
export interface GridColumnSortSettings extends ColumnSortSettings {
}
/**
* The sorting settings of the Grid ([see example](https://www.telerik.com/kendo-react-ui/components/grid/sorting)).
*
* @example
* ```jsx-no-run
*
* <Grid
* sortable={true}
* >
* </Grid>
* ```
*/
export type GridSortSettings = SortSettings;