galeforce-tmp-sea
Version:
A customizable, promise-based, and command-oriented TypeScript library for the Riot Games API.
18 lines • 376 B
TypeScript
import { Position, Role } from './player';
interface PlayerDTO {
summonerId: string;
position: Position;
role: Role;
}
export interface TeamDTO {
id: string;
tournamentId: number;
name: string;
iconId: number;
tier: number;
captain: string;
abbreviation: string;
players: PlayerDTO[];
}
export {};
//# sourceMappingURL=team.d.ts.map