@jlenon7/zedjs
Version:
Riot API Library for NodeJS
21 lines (19 loc) • 312 B
text/typescript
import { MatchListingMatches } from './match-listing-matches.dto'
export class MatchListingDto {
/**
* Matches listing
*/
matches: MatchListingMatches[]
/**
* Total games
*/
totalGames: number
/**
* Start index
*/
startIndex: number
/**
* End index
*/
endIndex: number
}