10 lines
269 B
TypeScript
10 lines
269 B
TypeScript
export enum TableSortDirection {
|
|
ASCENDING = "ASCENDING",
|
|
DESCENDING = "DESCENDING",
|
|
}
|
|
|
|
export const TableSortDirectionLabels: Record<TableSortDirection, string> = {
|
|
[TableSortDirection.ASCENDING]: "Ascending",
|
|
[TableSortDirection.DESCENDING]: "Descending",
|
|
};
|