lol-constants 1.5.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.getRuneTreeIdByName = void 0;
|
4
|
+
const RuneTreeIds_1 = require("../../Constants/Runes/RuneTreeIds");
|
5
|
+
function getRuneTreeIdByName(name) {
|
6
|
+
return RuneTreeIds_1.RuneTreeIds[name];
|
7
|
+
}
|
8
|
+
exports.getRuneTreeIdByName = getRuneTreeIdByName;
|
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.getRuneTreeNameById = void 0;
|
4
|
+
const RuneTreeNames_1 = require("../../Constants/Runes/RuneTreeNames");
|
5
|
+
function getRuneTreeNameById(id) {
|
6
|
+
return RuneTreeNames_1.RuneTreeNames[id];
|
7
|
+
}
|
8
|
+
exports.getRuneTreeNameById = getRuneTreeNameById;
|
package/package.json
CHANGED