tips-twisted
Version:
Fetching riot games api data
18 lines (17 loc) • 361 B
TypeScript
import { ClashPlayerDTO } from './player.clash.dto';
export declare class ClashTeamDto {
id: string;
tournamentId: number;
name: string;
iconId: number;
tier: number;
/**
* Summoner ID of the team captain.
*/
captain: string;
abbreviation: string;
/**
* Team members.
*/
players: ClashPlayerDTO[];
}