galeforce-tmp-sea
Version:
A customizable, promise-based, and command-oriented TypeScript library for the Riot Games API.
21 lines • 670 B
TypeScript
import { LiveClientMainRunesDTO } from './runes';
import { LiveClientScoreDTO } from './player-scores';
import { LiveClientSummonerSpellsDTO } from './summoner-spells';
import { LiveClientItemDTO } from './item';
export interface LiveClientPlayerDTO {
championName: string;
isBot: boolean;
isDead: boolean;
items: LiveClientItemDTO[];
level: number;
position: string;
rawChampionName: string;
respawnTimer: number;
runes: LiveClientMainRunesDTO;
scores: LiveClientScoreDTO;
skinID: number;
summonerName: string;
summonerSpells: LiveClientSummonerSpellsDTO;
team: string;
}
//# sourceMappingURL=all-players.d.ts.map