sendou.ink/api/tournaments.api.ts
2021-10-31 10:40:24 +02:00

21 lines
409 B
TypeScript

import type { Mode } from "./common";
export interface GetTournamentByOrganizationAndName {
name: string;
description: string | null;
startTime: Date;
checkInTime: Date;
bannerBackground: string;
bannerTextHSLArgs: string;
organizer: {
name: string;
discordInvite: string;
twitter: string | null;
nameForUrl: string;
};
mapPool: {
name: string;
mode: Mode;
}[];
}