@meibot/unofficial-valorant-api
Version:
Library for the Unofficial VALORANT API by api.henrikdev.xyz
18 lines (17 loc) • 392 B
TypeScript
import type { Rank } from "./general";
export interface V1MMRResponse {
name: string;
tag: string;
currenttier: number;
currenttierpatched: Rank;
images: {
small: string;
large: string;
triangle_up: string;
triangle_down: string;
};
ranking_in_tier: number;
mmr_change_to_last_game: number;
elo: number;
old: boolean;
}