export type SORTING_ORDER = 'ASC' | 'DESC'; export const SORTING_ORDER = { ASC: 'ASC' as SORTING_ORDER, DESC: 'DESC' as SORTING_ORDER };