mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 12:36:57 +00:00
24 lines
432 B
TypeScript
24 lines
432 B
TypeScript
import { LatLngLiteral } from "leaflet";
|
|
|
|
export enum TimeControl {
|
|
Classic = "Classic",
|
|
Rapid = "Rapid",
|
|
Blitz = "Blitz",
|
|
Other = "Other",
|
|
}
|
|
|
|
export interface Tournament {
|
|
id: string;
|
|
groupId: string;
|
|
town: string;
|
|
department: string;
|
|
tournament: string;
|
|
url: string;
|
|
timeControl: TimeControl;
|
|
date: string;
|
|
latLng: LatLngLiteral;
|
|
norm: boolean;
|
|
}
|
|
|
|
export type ScrollableElement = Window | HTMLElement;
|