Cockatrice/webclient/src/store/game/game.interfaces.ts
2026-04-15 21:48:03 -05:00

5 lines
128 B
TypeScript

import type { Enriched } from '@app/types';
export interface GamesState {
games: { [gameId: number]: Enriched.GameEntry };
}