aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/types/Ranking.tsx
blob: ad4d8aef89f005d0ecbcafd4cbefebece8dba789 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { UserShort } from "./Profile";

export interface RankingType {
    placement: number;
    user: UserShort;
    total_score: number;
}

export interface Ranking {
    rankings_overall: RankingType[];
    rankings_singleplayer: RankingType[];
    rankings_multiplayer: RankingType[];
}