Total Complexity | 2 |
Complexity/F | 1 |
Lines of Code | 16 |
Function Count | 2 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | "use strict"; |
||
2 | Object.defineProperty(exports, "__esModule", { value: true }); |
||
3 | var Summoner = /** @class */ (function () { |
||
4 | function Summoner(id, name, icon, level, accountId, revisionDate, mastery) { |
||
5 | this.mastery = null; |
||
6 | this.id = id; |
||
7 | this.name = name; |
||
8 | this.icon = icon; |
||
9 | this.level = level; |
||
10 | this.accountId = accountId; |
||
11 | this.revisionDate = revisionDate; |
||
12 | this.mastery = mastery; |
||
13 | } |
||
14 | return Summoner; |
||
15 | }()); |
||
16 | exports.Summoner = Summoner; |
||
17 | //# sourceMappingURL=summoner.js.map |