reactions, match sse, etc

This commit is contained in:
yohlo
2025-09-19 14:08:36 -05:00
parent 602e6e3473
commit f99d6efaf9
20 changed files with 474 additions and 100 deletions

View File

@@ -7,4 +7,10 @@ export type TestEvent = {
playerId: string;
};
export type ServerEvent = TestEvent;
export type MatchEvent = {
type: "match";
matchId: string;
tournamentId: string;
}
export type ServerEvent = TestEvent | MatchEvent;