brawlhalla-api-ts
Version:
TypeScript wrapper for the Brawlhalla API.
13 lines • 396 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var Legend = (function () {
function Legend(id, name, firstWeapon, secondWeapon) {
this.id = id;
this.name = name;
this.firstWeapon = firstWeapon;
this.secondWeapon = secondWeapon;
}
return Legend;
}());
exports.Legend = Legend;
//# sourceMappingURL=legend.js.map