A sort state.

interface ISortState {
    direction: "ascending" | "descending";
    key: "name" | "last_modified" | "file_size";
}

Properties

Properties

direction: "ascending" | "descending"

The direction of sort.

key: "name" | "last_modified" | "file_size"

The sort key.