brawlhalla-api-ts
Version:
TypeScript wrapper for the Brawlhalla API.
15 lines (14 loc) • 536 B
TypeScript
import { LegendRankedStats as ILegendRankedStats, TValidDivision, TValidTier } from '../../types';
import { Legend } from '../legend';
import { RawPlayerRankedLegendStats } from '../../types/raw/rawPlayerRankedStats';
export declare class LegendRankedStats implements ILegendRankedStats {
legend: Legend;
rating: number;
peakRating: number;
tier: TValidTier;
division: TValidDivision;
games: number;
wins: number;
get defeats(): number;
constructor(data: RawPlayerRankedLegendStats);
}