weedwick-api
Version:
A helper library to ease the communication with the Riot API
23 lines (22 loc) • 722 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Locale = exports.Region = void 0;
var Region;
(function (Region) {
Region["BRAZIL"] = "br";
Region["EUROPE"] = "eune";
Region["EUROPE_WEST"] = "euw";
Region["KOREA"] = "kr";
Region["LATIN_AMERICA_NORTH"] = "lan";
Region["LATIN_AMERICA_SOUTH"] = "las";
Region["NORTH_AMERICA"] = "na";
Region["OCEANIA"] = "oce";
Region["RUSSIA"] = "ru";
Region["TURKEY"] = "tr";
Region["JAPAN"] = "jp";
})(Region = exports.Region || (exports.Region = {}));
var Locale;
(function (Locale) {
Locale["EnglishUK"] = "en_GB";
Locale["German"] = "de_DE";
})(Locale = exports.Locale || (exports.Locale = {}));