node-valorant-api
Version:
A NodeJS wrapper for the VALORANT API
16 lines (15 loc) • 340 B
TypeScript
import { long } from '../alias';
export interface LeaderboardDto {
shard: string;
actId: string;
totalPlayers: long;
players: PlayerDto[];
}
export interface PlayerDto {
puuid: string;
gameName: string;
tagLine: string;
leaderboardRank: long;
rankedRating: long;
numberOfWins: long;
}