import fetcher from './fetcher'; import type { Group } from './players'; export const getScores = async ({ token }: { token: string }): Promise => { const { data, status } = await fetcher.get(`/leaderboard`, { headers: { Authorization: `Bearer ${token}` } }); const scores = data; if (status !== 200) { throw new Error('Failed to fetch scores'); } if (!scores) { return [] as Score[]; } return scores as Score[]; }; export type Score = { score: number; tries: number; completions: number; pseudo: string; groups: Group[]; avatar: string; rank: number; };