20 lines
432 B
TypeScript
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;
|
||
|
};
|