This repository has been archived on 2023-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
2023-03-29 18:33:44 +01:00

20 lines
432 B
TypeScript

import { ScoresaberBadge } from "./ScoresaberBadge";
import { ScoresaberScoreStats } from "./ScoresaberScoreStats";
export type ScoresaberPlayer = {
id: string;
name: string;
profilePicture: string;
country: string;
pp: number;
rank: number;
countryRank: number;
role: string;
badges: ScoresaberBadge[];
histories: string;
scoreStats: ScoresaberScoreStats;
permissions: number;
banned: boolean;
inactive: boolean;
};