galeforce-tmp-sea
Version:
A customizable, promise-based, and command-oriented TypeScript library for the Riot Games API.
15 lines • 336 B
TypeScript
interface TournamentPhaseDTO {
id: number;
registrationTime: number;
startTime: number;
cancelled: boolean;
}
export interface TournamentDTO {
id: number;
themeId: number;
nameKey: string;
nameKeySecondary: string;
schedule: TournamentPhaseDTO[];
}
export {};
//# sourceMappingURL=tournament.d.ts.map