@meibot/unofficial-valorant-api
Version:
Library for the Unofficial VALORANT API by api.henrikdev.xyz
31 lines (30 loc) • 619 B
TypeScript
import { PremierConferences } from "./general";
export type V1Premier = {
id: string;
name: string;
tag: string;
enrolled: boolean;
stats: {
wins: number;
matches: number;
losses: number;
};
placement: {
points: number;
conference: PremierConferences;
division: number;
place: number;
};
customization: {
icon: string;
image: string;
primary: string;
secondary: string;
tertiary: string;
};
member: {
puuid: string;
name: string;
tag: string;
}[];
};