add simple live score feed page
Some checks are pending
Deploy Website / deploy (push) Waiting to run
Deploy Backend / deploy (push) Successful in 4m15s

This commit is contained in:
Lee
2024-10-13 04:40:04 +01:00
parent ee212150fd
commit 4cc5893757
8 changed files with 224 additions and 24 deletions

View File

@ -0,0 +1,11 @@
export type ScoreSaberWebsocketMessageToken = {
/**
* Command name
*/
commandName: "score";
/**
* Command data
*/
commandData: any;
};