apextab-api
Version:
A simple Node.js Wrapper for the *Apex Legends* API provided by ApexTab.
17 lines (16 loc) • 548 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var Legend;
(function (Legend) {
Legend["Bangalore"] = "Bangalore";
Legend["Bloodhound"] = "Bloodhound";
Legend["Caustic"] = "Caustic";
Legend["Gibraltar"] = "Gibraltar";
Legend["Lifeline"] = "Lifeline";
Legend["Mirage"] = "Mirage";
Legend["Pathfinder"] = "Pathfinder";
Legend["Wraith"] = "Wraith";
})(Legend = exports.Legend || (exports.Legend = {}));
exports.ResolveLegend = function (data) {
return Legend[data];
};