track total score, total ranked score, replay watched count and add a score chart
This commit is contained in:
@ -14,6 +14,26 @@ export interface PlayerHistory {
|
||||
*/
|
||||
pp?: number;
|
||||
|
||||
/**
|
||||
* How many times replays of the player scores have been watched
|
||||
*/
|
||||
replaysWatched?: number;
|
||||
|
||||
/**
|
||||
* The player's score stats.
|
||||
*/
|
||||
score?: {
|
||||
/**
|
||||
* The total amount of unranked and ranked score.
|
||||
*/
|
||||
totalScore?: number;
|
||||
|
||||
/**
|
||||
* The total amount of ranked score.
|
||||
*/
|
||||
totalRankedScore?: number;
|
||||
};
|
||||
|
||||
/**
|
||||
* The amount of scores set for this day.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user