lol-api-js
Version:
Integration package LoL Riot API and your typescript/javascript
24 lines • 729 B
TypeScript
export default class ChampionMastery {
championId: number;
championLevel: number;
championPoints: number;
lastPlayTime: number;
championPointsSinceLastLevel: number;
championPointsUntilNextLevel: number;
chestGranted: boolean;
tokensEarned: number;
summonerId: string;
constructor(jsonObj: championMasteryData);
}
export interface championMasteryData {
championId: number;
championLevel: number;
championPoints: number;
lastPlayTime: number;
championPointsSinceLastLevel: number;
championPointsUntilNextLevel: number;
chestGranted: boolean;
tokensEarned: number;
summonerId: string;
}
//# sourceMappingURL=championMastery.d.ts.map