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.
|
|
|
|
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;
|
|
|
|
|
seasonId: string;
|
|
|
|
|
mapName: string;
|
|
|
|
|
mapImg: string;
|
|
|
|
|
seasonStartDate: string;
|
|
|
|
|
seasonEndDate: string;
|
|
|
|
|
entries: SeasonWeekEntry[];
|
|
|
|
|
}
|