You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
649 B

export interface Season {
_id: string,
title: string;
subTitle: string;
startDate: string;
}
export interface BridgeUser {
_id: string;
realName: string;
gameHandle: string;
}
export interface SeasonStandingsEntry {
_id: string;
position: string;
points: number;
user: BridgeUser;
}
export interface SeasonWeekEntry {
_id: string;
position: string;
runTime: string;
user: BridgeUser;
}
export interface SeasonWeek {
_id: string;
2 years ago
seasonId: string;
mapName: string;
mapImg: string;
2 years ago
seasonStartDate: string;
seasonEndDate: string;
entries: SeasonWeekEntry[];
}