smh my head
This commit is contained in:
@ -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 =
|
||||
|
@ -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;
|
||||
};
|
||||
|
Reference in New Issue
Block a user