mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 04:26:57 +00:00
1715b1646b
* Mutual Highlighting (#41) * Tidy up * Delete unused API route
13 lines
250 B
TypeScript
13 lines
250 B
TypeScript
export interface Tournament {
|
|
_id: string;
|
|
town: string;
|
|
department: string;
|
|
tournament: string;
|
|
url: string;
|
|
time_control: string;
|
|
date: string;
|
|
coordinates: [number, number];
|
|
}
|
|
|
|
export type ScrollableElement = Window | HTMLElement;
|