challonge-ts
Version:
Challonge API interface
11 lines (10 loc) • 338 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/** Base class for challonge objects, holds at its core the api key */
var ChallongeBase = /** @class */ (function () {
function ChallongeBase(api_key) {
this.api_key = api_key;
}
return ChallongeBase;
}());
exports.default = ChallongeBase;