add scores set
All checks were successful
deploy / deploy (push) Successful in 53s

This commit is contained in:
Lee
2023-10-27 18:33:07 +01:00
parent 5e3d8acbeb
commit 44bb22c2fe
5 changed files with 42 additions and 35 deletions

View File

@ -0,0 +1,11 @@
export type ScoresaberMetricsHistory = {
serverTimeTaken: number;
activePlayersHistory: {
time: string;
value: number | null;
}[];
scoreCountHistory: {
time: string;
value: number | null;
}[];
};

View File

@ -1,7 +0,0 @@
export type ScoresaberPlayerCountHistory = {
serverTimeTaken: number;
history: {
time: string;
value: number | null;
}[];
};