export const ACTIVE_SEEDED_LEAGUES = [
  'nba',
  'wnba',
  'nhl',
  'ncaab',
  'epl',
  'la_liga',
  'bundesliga',
  'serie_a',
  'ligue_1',
  'champions_league',
  'mlb',
  'mma',
] as const;

export type ActiveSeededLeague = (typeof ACTIVE_SEEDED_LEAGUES)[number];
