Files
echecsfrance/types.ts
T
2023-06-20 15:00:59 +02:00

17 lines
324 B
TypeScript

export interface Tournament {
_id: string;
town: string;
department: string;
tournament: string;
url: string;
time_control: string;
date: string;
coordinates: [number, number];
}
export interface TournamentDataProps {
tournamentData: Tournament[];
}
export type ScrollableElement = Window | HTMLElement;