mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 04:26:57 +00:00
Global filters (#40)
This commit is contained in:
@@ -1,12 +1,21 @@
|
||||
import { LatLngLiteral } from "leaflet";
|
||||
|
||||
export enum TimeControl {
|
||||
Classic = "Classic",
|
||||
Rapid = "Rapid",
|
||||
Blitz = "Blitz",
|
||||
KO = "KO",
|
||||
};
|
||||
|
||||
export interface Tournament {
|
||||
_id: string;
|
||||
town: string;
|
||||
department: string;
|
||||
tournament: string;
|
||||
url: string;
|
||||
time_control: string;
|
||||
timeControl: TimeControl;
|
||||
date: string;
|
||||
coordinates: [number, number];
|
||||
latLng: LatLngLiteral;
|
||||
}
|
||||
|
||||
export type ScrollableElement = Window | HTMLElement;
|
||||
|
||||
Reference in New Issue
Block a user