@meibot/unofficial-valorant-api
Version:
Library for the Unofficial VALORANT API by api.henrikdev.xyz
17 lines (16 loc) • 397 B
TypeScript
export type V1PremierHistory = {
league_matches: {
id: string;
points_before: number;
points_after: number;
started_at: string;
}[];
tournament_matches: {
tournament_id: string;
placement: number;
placement_league_bonus: number;
points_before: number;
points_after: number;
matches: string[];
}[];
};