A sort state.

interface ISortState {
    direction: "ascending" | "descending";
    key: SortableColumn;
}

Properties

Properties

direction: "ascending" | "descending"

The direction of sort.

The sort key.