export const asc = 'asc'; export const desc = 'desc'; type SortOrder = typeof asc | typeof desc; export default SortOrder;