This commit is contained in:
lila 2026-05-30 03:47:59 +02:00
parent 37f6a55798
commit d55a1ed648
2 changed files with 104 additions and 1 deletions

View file

@ -1,6 +1,6 @@
export type GameSessionData = {
answers: Map<string, { correctOptionId: number }>;
userId: string;
userId: string | null;
};
export interface GameSessionStore {