@meibot/unofficial-valorant-api
Version:
Library for the Unofficial VALORANT API by api.henrikdev.xyz
35 lines (34 loc) • 727 B
TypeScript
export type v1EsportsSchedule = {
date: string;
state: string;
type: string;
vod: string | null;
league: {
name: string;
identifier: string;
icon: string;
region: string;
};
tournament: {
name: string;
season: string;
};
match: {
id: string;
game_type: {
type: "playAll" | "bestOf" | null;
count: number | null;
};
teams: {
name: string;
code: string;
icon: string;
has_won: boolean;
game_wins: number;
record: {
wins: number;
losses: number;
};
}[];
};
}[];