UNPKG

galeforce-tmp-sea

Version:

A customizable, promise-based, and command-oriented TypeScript library for the Riot Games API.

11 lines 460 B
import { LiveClientActivePlayerDTO } from './active-player'; import { LiveClientPlayerDTO } from './all-players'; import { LiveClientEventsDTO } from './event'; import { LiveClientGameStatsDTO } from './game-stats'; export interface LiveClientAllGameDataDTO { activePlayer: LiveClientActivePlayerDTO; allPlayers: LiveClientPlayerDTO[]; events: LiveClientEventsDTO; gameData: LiveClientGameStatsDTO; } //# sourceMappingURL=all-game-data.d.ts.map