smh my head
All checks were successful
Deploy Backend / docker (ubuntu-latest) (push) Successful in 58s
Deploy Website / docker (ubuntu-latest) (push) Successful in 2m55s

This commit is contained in:
Lee
2024-10-29 18:52:14 +00:00
parent 448155a3c3
commit de441b698c
3 changed files with 6 additions and 8 deletions

View File

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

View File

@ -1,5 +1,4 @@
import { PlayerHistory } from "./player-history";
import { Timeframe } from "../timeframe";
export default class Player {
/**
@ -56,8 +55,7 @@ export default class Player {
}
}
export type StatisticRange = "daily" | "weekly" | "monthly";
export type StatisticChange = {
daily: PlayerHistory;
weekly: PlayerHistory;
monthly: PlayerHistory;
[key in StatisticRange]: PlayerHistory;
};