mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-12 22:11:06 -05:00
15 lines
314 B
TypeScript
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;
|
|
};
|
|
}
|