mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 04:26:57 +00:00
15 lines
274 B
TypeScript
15 lines
274 B
TypeScript
export interface Tournament {
|
|
_id: string;
|
|
location: string;
|
|
department: string;
|
|
tournament: string;
|
|
url: string;
|
|
time_control: string;
|
|
date: string;
|
|
coordinates: [number, number];
|
|
}
|
|
|
|
export interface TournamentTableProps {
|
|
tournamentData: Tournament[];
|
|
}
|