add analytics page
Some checks failed
deploy / deploy (push) Failing after 20s

This commit is contained in:
Lee
2023-10-27 16:26:23 +01:00
parent 1abb78719b
commit c52ba58d2e
5 changed files with 175 additions and 3 deletions

View File

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