add more statistics
All checks were successful
Deploy Backend / docker (ubuntu-latest) (push) Successful in 48s
Deploy Website / docker (ubuntu-latest) (push) Successful in 2m26s

This commit is contained in:
Lee
2024-10-24 14:36:24 +01:00
parent aaee96ad7b
commit 6d0c6aa47f
3 changed files with 27 additions and 0 deletions

View File

@ -3,4 +3,19 @@ export type AppStatistics = {
* The total amount of players being tracked.
*/
trackedPlayers: number;
/**
* The total amount of ScoreSaber scores tracked.
*/
trackedScores: number;
/**
* The total amount of additional data for scores being tracked.
*/
additionalScoresData: number;
/**
* The amount of cached BeatSaver maps.
*/
cachedBeatSaverMaps: number;
};