Sorting

<T> represents the object's shape coming from the data source.

DikeColumnSortEvent<T>

interface DikeColumnSortEvent<T extends object> {
  type: 'asc' | 'desc';
  sortedColumn: DikeDataColumnDef<T, string | number | Date | boolean>;
}

Last updated