mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
f436d730fe
Co-authored-by: Qstick <qstick@gmail.com>
7 lines
110 B
TypeScript
7 lines
110 B
TypeScript
enum SortDirection {
|
|
Ascending = 'ascending',
|
|
Descending = 'descending',
|
|
}
|
|
|
|
export default SortDirection;
|