gbf-raidfinder
Version:
JavaScript library for tracking Granblue Fantasy raid tweets from Twitter
10 lines • 424 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MINIMUM_LEVEL = 20;
exports.MAXIMUM_LEVEL = 200;
exports.ALL_LEVELS = [];
exports.TWEET_SOURCE = '<a href="http://granbluefantasy.jp/" rel="nofollow">グランブルー ファンタジー</a>';
for (var i = exports.MINIMUM_LEVEL; i <= exports.MAXIMUM_LEVEL; i += 5) {
exports.ALL_LEVELS.push(i);
}
//# sourceMappingURL=Constants.js.map