UNPKG

galeforce-tmp-sea

Version:

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

23 lines 528 B
import { MiniSeriesDTO } from './league-entry'; interface LeagueItemDTO { freshBlood: boolean; wins: number; summonerName: string; miniSeries?: MiniSeriesDTO; inactive: boolean; veteran: boolean; hotStreak: boolean; rank: string; leaguePoints: number; losses: number; summonerId: string; } export interface LeagueListDTO { leagueId: string; entries: LeagueItemDTO[]; tier: string; name: string; queue: string; } export {}; //# sourceMappingURL=league-list.d.ts.map