UNPKG

@meibot/unofficial-valorant-api

Version:

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

22 lines (21 loc) 556 B
import type { Region } from "../general"; export interface Match { MatchID: string; MapID: string; SeasonID: string; MatchStartTime: any; TierAfterUpdate: number; TierBeforeUpdate: number; RankedRatingAfterUpdate: number; RankedRatingBeforeUpdate: number; RankedRatingEarned: number; RankedRatingPerformanceBonus: number; CompetitiveMovement: string; AFKPenalty: number; } export interface RawCompetitiveUpdatesResponse { Version: number; Subject: string; Matches: Match[]; region: Region; }