mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-22 20:16:57 +00:00
17 lines
324 B
TypeScript
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;
|