For the complete documentation index, see llms.txt. This page is also available as Markdown.

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