UNPKG

@zomlit/tsleague

Version:

RL wrapper in TypeScript

17 lines (16 loc) 438 B
import { Stats } from '../interfaces/Stats'; export declare class OverviewStats { private stats; constructor(stats: { [key: string]: Stats; }); getSeasonReward(): string; getSeasonRewardIcon(): string; getTotalWins(): number; getTotalShots(): number; getTotalGoals(): number; getTotalSaves(): number; getTotalAssists(): number; getTotalMVPs(): number; getGoalShotRatio(): number; }