lol-constants 1.3.1 → 1.3.2
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.
- package/dist/index.d.ts +4 -0
- package/dist/index.js +10 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -5,9 +5,11 @@ export { ChampionKeys } from './Constants/Champions/ChampionKeys';
|
|
5
5
|
export { ChampionNames } from './Constants/Champions/ChampionNames';
|
6
6
|
export { ItemKeys } from './Constants/Items/ItemKeys';
|
7
7
|
export { ItemNames } from './Constants/Items/ItemNames';
|
8
|
+
export { RuneIconFileNames } from './Constants/Runes/RuneIconFileNames';
|
8
9
|
export { RuneIds } from './Constants/Runes/RuneIds';
|
9
10
|
export { RuneNames } from './Constants/Runes/RuneNames';
|
10
11
|
export { RuneSets } from './Constants/Runes/RuneSets';
|
12
|
+
export { RuneSetsByRuneNames } from './Constants/Runes/RuneSetsByRuneNames';
|
11
13
|
export { RuneTreeIds } from './Constants/Runes/RuneTreeIds';
|
12
14
|
export { RuneTreeNames } from './Constants/Runes/RuneTreeNames';
|
13
15
|
export { StatRuneIds } from './Constants/Runes/StatRuneIds';
|
@@ -30,6 +32,8 @@ export { getItemKeyByName } from './Helpers/Items/getItemKeyByName';
|
|
30
32
|
export { getItemNameByKey } from './Helpers/Items/getItemNameByKey';
|
31
33
|
export { isItemKey } from './Helpers/Items/isItemKey';
|
32
34
|
export { isItemName } from './Helpers/Items/isItemName';
|
35
|
+
export { getRuneCategoryByRuneName } from './Helpers/Runes/getRuneCategoryByRuneName';
|
36
|
+
export { getRuneCDNURL } from './Helpers/Runes/getRuneCDNURL';
|
33
37
|
export { getRuneIdByName } from './Helpers/Runes/getRuneIdByName';
|
34
38
|
export { getRuneNameById } from './Helpers/Runes/getRuneNameById';
|
35
39
|
export { getStatRuneIdByName } from './Helpers/Runes/getStatRuneIdByName';
|
package/dist/index.js
CHANGED
@@ -14,8 +14,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
15
|
};
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
-
exports.
|
18
|
-
exports.isSpellName = exports.isSpellKey = exports.isSpellId = exports.getSpellNameByKey = exports.getSpellNameById = exports.getSpellKeyByName = exports.getSpellKeyById = exports.getSpellIdByName = exports.getSpellIdByKey = exports.isTreeRuneName = exports.isTreeRuneId = void 0;
|
17
|
+
exports.isRuneTreeId = exports.isRuneName = exports.isRuneId = exports.isResolveTreeRuneId = exports.isPrecisionTreeRuneId = exports.isKeystoneRuneId = exports.isInspirationTreeRuneId = exports.isDominationTreeRuneId = exports.getTreeRuneNameById = exports.getTreeRuneIdByName = exports.getStatRuneNameById = exports.getStatRuneIdByName = exports.getRuneNameById = exports.getRuneIdByName = exports.getRuneCDNURL = exports.getRuneCategoryByRuneName = exports.isItemName = exports.isItemKey = exports.getItemNameByKey = exports.getItemKeyByName = exports.isChampionName = exports.isChampionKey = exports.isChampionId = exports.getChampionNameById = exports.getChampionKeyByName = exports.getChampionKeyById = exports.getChampionIdByName = exports.getChampionIdByKey = exports.SpellNames = exports.SpellKeys = exports.SpellIdsByName = exports.SpellIds = exports.TreeRuneNames = exports.TreeRuneIds = exports.StatRuneNames = exports.StatRuneIds = exports.RuneTreeNames = exports.RuneTreeIds = exports.RuneSetsByRuneNames = exports.RuneSets = exports.RuneNames = exports.RuneIds = exports.RuneIconFileNames = exports.ItemNames = exports.ItemKeys = exports.ChampionNames = exports.ChampionKeys = exports.ChampionIdsByName = exports.ChampionIds = exports.DDPaths = void 0;
|
18
|
+
exports.isSpellName = exports.isSpellKey = exports.isSpellId = exports.getSpellNameByKey = exports.getSpellNameById = exports.getSpellKeyByName = exports.getSpellKeyById = exports.getSpellIdByName = exports.getSpellIdByKey = exports.isTreeRuneName = exports.isTreeRuneId = exports.isStatRuneName = exports.isStatRuneId = exports.isSorceryTreeRuneId = exports.isRuneTreeName = void 0;
|
19
19
|
// # Constants
|
20
20
|
var DDPaths_1 = require("./Constants/DDPaths");
|
21
21
|
Object.defineProperty(exports, "DDPaths", { enumerable: true, get: function () { return DDPaths_1.DDPaths; } });
|
@@ -34,12 +34,16 @@ Object.defineProperty(exports, "ItemKeys", { enumerable: true, get: function ()
|
|
34
34
|
var ItemNames_1 = require("./Constants/Items/ItemNames");
|
35
35
|
Object.defineProperty(exports, "ItemNames", { enumerable: true, get: function () { return ItemNames_1.ItemNames; } });
|
36
36
|
// ## Runes
|
37
|
+
var RuneIconFileNames_1 = require("./Constants/Runes/RuneIconFileNames");
|
38
|
+
Object.defineProperty(exports, "RuneIconFileNames", { enumerable: true, get: function () { return RuneIconFileNames_1.RuneIconFileNames; } });
|
37
39
|
var RuneIds_1 = require("./Constants/Runes/RuneIds");
|
38
40
|
Object.defineProperty(exports, "RuneIds", { enumerable: true, get: function () { return RuneIds_1.RuneIds; } });
|
39
41
|
var RuneNames_1 = require("./Constants/Runes/RuneNames");
|
40
42
|
Object.defineProperty(exports, "RuneNames", { enumerable: true, get: function () { return RuneNames_1.RuneNames; } });
|
41
43
|
var RuneSets_1 = require("./Constants/Runes/RuneSets");
|
42
44
|
Object.defineProperty(exports, "RuneSets", { enumerable: true, get: function () { return RuneSets_1.RuneSets; } });
|
45
|
+
var RuneSetsByRuneNames_1 = require("./Constants/Runes/RuneSetsByRuneNames");
|
46
|
+
Object.defineProperty(exports, "RuneSetsByRuneNames", { enumerable: true, get: function () { return RuneSetsByRuneNames_1.RuneSetsByRuneNames; } });
|
43
47
|
var RuneTreeIds_1 = require("./Constants/Runes/RuneTreeIds");
|
44
48
|
Object.defineProperty(exports, "RuneTreeIds", { enumerable: true, get: function () { return RuneTreeIds_1.RuneTreeIds; } });
|
45
49
|
var RuneTreeNames_1 = require("./Constants/Runes/RuneTreeNames");
|
@@ -89,6 +93,10 @@ Object.defineProperty(exports, "isItemKey", { enumerable: true, get: function ()
|
|
89
93
|
var isItemName_1 = require("./Helpers/Items/isItemName");
|
90
94
|
Object.defineProperty(exports, "isItemName", { enumerable: true, get: function () { return isItemName_1.isItemName; } });
|
91
95
|
// ## Runes
|
96
|
+
var getRuneCategoryByRuneName_1 = require("./Helpers/Runes/getRuneCategoryByRuneName");
|
97
|
+
Object.defineProperty(exports, "getRuneCategoryByRuneName", { enumerable: true, get: function () { return getRuneCategoryByRuneName_1.getRuneCategoryByRuneName; } });
|
98
|
+
var getRuneCDNURL_1 = require("./Helpers/Runes/getRuneCDNURL");
|
99
|
+
Object.defineProperty(exports, "getRuneCDNURL", { enumerable: true, get: function () { return getRuneCDNURL_1.getRuneCDNURL; } });
|
92
100
|
var getRuneIdByName_1 = require("./Helpers/Runes/getRuneIdByName");
|
93
101
|
Object.defineProperty(exports, "getRuneIdByName", { enumerable: true, get: function () { return getRuneIdByName_1.getRuneIdByName; } });
|
94
102
|
var getRuneNameById_1 = require("./Helpers/Runes/getRuneNameById");
|
package/package.json
CHANGED