cleanup top scores and add timeframes to them
Some checks failed
Deploy Backend / docker (ubuntu-latest) (push) Failing after 45s
Deploy Website / docker (ubuntu-latest) (push) Failing after 32s

This commit is contained in:
Lee
2024-10-29 18:34:58 +00:00
parent 9e96d2f0ba
commit b68de0552f
14 changed files with 244 additions and 145 deletions

View File

@ -1,5 +1,5 @@
import ScoreSaberPlayer from "./impl/scoresaber-player";
import { ChangeRange } from "./player";
import { Timeframe } from "../timeframe";
export type PlayerStatValue = {
/**
@ -10,7 +10,7 @@ export type PlayerStatValue = {
/**
* The value of the stat.
*/
value: (player: ScoreSaberPlayer, range: ChangeRange) => number | undefined;
value: (player: ScoreSaberPlayer, range: Timeframe) => number | undefined;
};
export type PlayerStatChangeType =