mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-20 10:18:24 -05:00
21 lines
409 B
TypeScript
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;
|
|
}[];
|
|
}
|