mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-12 09:04:53 -07:00
5 lines
128 B
TypeScript
5 lines
128 B
TypeScript
import type { Enriched } from '@app/types';
|
|
|
|
export interface GamesState {
|
|
games: { [gameId: number]: Enriched.GameEntry };
|
|
}
|