refactor translations

This commit is contained in:
Fabrice Lamant
2024-08-04 09:00:47 +02:00
parent 9e525f3cd9
commit 4fe7181e0d
7 changed files with 138 additions and 102 deletions

6
src/types.d.ts vendored
View File

@ -30,3 +30,9 @@ export interface NOC {
icon: string;
name: string;
}
export interface Medal {
color: "gold" | "silver" | "bronze";
name: string;
noc: string;
}