TableSortByFieldState🔗
Sort by field state
Definition🔗
export interface TableSortByFieldState {
// Sets the display name of the field to sort by
displayName: string;
// Flag used to indicate descending sort order
desc?: boolean;
}