@zomlit/tsleague
Version:
RL wrapper in TypeScript
17 lines (16 loc) • 438 B
TypeScript
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;
}