UNPKG

@meibot/unofficial-valorant-api

Version:

Library for the Unofficial VALORANT API by api.henrikdev.xyz

15 lines (14 loc) 343 B
export interface Player { PlayerCardID: string; TitleID: string; IsBanned: boolean; IsAnonymized: boolean; puuid: string; gameName: string; tagLine: string; leaderboardRank: number; rankedRating: number; numberOfWins: number; competitiveTier: number; } export type V1LeaderboardResponse = Player[];