sendou.ink/api/tournaments.api.ts
2021-10-25 16:45:29 +03:00

15 lines
314 B
TypeScript

export interface GetTournamentByOrganizationAndName {
name: string;
description: string | null;
startTime: Date;
checkInTime: Date;
bannerBackground: string;
bannerTextColor: string;
organizer: {
name: string;
discordInvite: string;
twitter: string | null;
nameForUrl: string;
};
}