constants.ts 236 Bytes
export const COLUMNS = {
  RANK: 'rank',
  FP: 'fantasyPoints',
  FPPG: 'fantasyPointsPerGame',
  PRICE: 'value'
};

export const DEFAULT_SORT: { COLUMN: string; DIRECTION: SortType } = {
  COLUMN: COLUMNS.PRICE,
  DIRECTION: 'DESC'
};