constants.ts 236 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 export const COLUMNS = { RANK: 'rank', FP: 'fantasyPoints', FPPG: 'fantasyPointsPerGame', PRICE: 'value' }; export const DEFAULT_SORT: { COLUMN: string; DIRECTION: SortType } = { COLUMN: COLUMNS.PRICE, DIRECTION: 'DESC' };