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