diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-11-07 12:56:30 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-11-07 12:56:30 -0800 |
| commit | ce0227d3ad947253031122a2e7e2807ec7f96fa4 (patch) | |
| tree | 12ff91b19fb82d90bca16bb10fe23a1a0f953951 /frontend/src/types/game.ts | |
| parent | bd525aaba017deb95415c28ea6725ddc1dae7890 (diff) | |
chore: change ScoreDisplayProps and Score to be shared types
Diffstat (limited to 'frontend/src/types/game.ts')
| -rw-r--r-- | frontend/src/types/game.ts | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/frontend/src/types/game.ts b/frontend/src/types/game.ts index 3c595ea..1f46fea 100644 --- a/frontend/src/types/game.ts +++ b/frontend/src/types/game.ts @@ -3,3 +3,21 @@ export interface SupportedGame { formattedName: string; description: string; } + +export interface Score { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + [key: string]: any; + timestamp: string | number; + username?: string; +} + +export interface ScoreDisplayProps { + scores: Score[]; + viewMode: "cards" | "table"; + sortField: string; + sortDirection: "asc" | "desc"; + onSort: (field: string) => void; + onDelete?: (scoreId: number) => void; + showUsername?: boolean; + hideTitleArtist?: boolean; +} |
