Files
echecsfrance/types.ts
T
2023-05-24 00:07:34 +02:00

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[];
}