Files
echecsfrance/types.ts
T
Timothy Armes 1715b1646b Mutual Highlighting (#41) (#55)
* Mutual Highlighting (#41)

* Tidy up

* Delete unused API route
2023-07-05 13:55:56 +02:00

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;