track total scores and total ranked scores
All checks were successful
Deploy Backend / docker (ubuntu-latest) (push) Successful in 44s
Deploy Website / docker (ubuntu-latest) (push) Successful in 2m13s

This commit is contained in:
Lee
2024-10-20 19:34:54 +01:00
parent cd2f8c0925
commit bded9969fe
3 changed files with 25 additions and 1 deletions

View File

@ -27,6 +27,16 @@ export interface PlayerHistory {
* The amount of unranked scores set.
*/
unrankedScores?: number;
/**
* The total amount of ranked scores
*/
totalRankedScores?: number;
/**
* The total amount of scores
*/
totalScores?: number;
};
/**