lol-constants 1.10.0 → 1.10.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.ts +4 -0
- package/dist/index.js +11 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -1,4 +1,8 @@
|
|
1
1
|
export { DDPaths } from './Constants/DDPaths';
|
2
|
+
export { Lanes } from './Constants/Lanes';
|
3
|
+
export { Levels } from './Constants/Levels';
|
4
|
+
export { Positions } from './Constants/Positions';
|
5
|
+
export { Skills } from './Constants/Skills';
|
2
6
|
export { ChampionIds } from './Constants/Champions/ChampionIds';
|
3
7
|
export { ChampionIdsByName } from './Constants/Champions/ChampionIdsByName';
|
4
8
|
export { ChampionKeys } from './Constants/Champions/ChampionKeys';
|
package/dist/index.js
CHANGED
@@ -14,11 +14,20 @@ 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.
|
17
|
+
exports.getChampionIdByKey = exports.isSkill = exports.isPosition = exports.isLevel = exports.isLane = exports.SpellNames = exports.SpellKeys = exports.SpellIdsByName = exports.SpellIds = exports.TreeRuneNames = exports.TreeRuneIds = exports.RuneTreeNames = exports.RuneTreeIds = exports.RuneSetsByRuneNames = exports.StatRuneHSetsByRuneNames = exports.RuneTreeHSetsByRuneNames = exports.RuneIds = exports.StatRuneIds = exports.KeystoneIds = exports.SecondaryRuneTreesByRuneNames = exports.PrimaryRuneTreesByRuneNames = exports.RuneSets = exports.StatRuneHSets = exports.RuneTreeHSets = exports.RuneNames = exports.StatRuneNames = exports.KeystoneNames = exports.SecondaryRuneTrees = exports.PrimaryRuneTrees = exports.RunePickingRelationships = exports.RuneIconFileNames = exports.ChampionRelationTypes = exports.MythicItemNames = exports.MythicItemKeys = exports.LegendaryItemNames = exports.LegendaryItemKeys = exports.ItemTypes = exports.ItemNames = exports.ItemKeys = exports.BootsItemNames = exports.BootsItemKeys = exports.ChampionNames = exports.ChampionKeys = exports.ChampionIdsByName = exports.ChampionIds = exports.Skills = exports.Positions = exports.Levels = exports.Lanes = exports.DDPaths = void 0;
|
18
|
+
exports.getSpellNameById = exports.getSpellKeyByName = exports.getSpellKeyById = exports.getSpellIdByName = exports.getSpellIdByKey = exports.isTreeRuneName = exports.isTreeRuneId = exports.isStatRuneName = exports.isStatRuneId = exports.isSorceryTreeRuneId = exports.isRuneTreeName = 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.getRuneTreeNameById = exports.getRuneTreeIdByName = exports.getRuneNameById = exports.getRuneIdByName = exports.getRuneCDNURL = exports.getRuneCategoryByRuneName = exports.isChampionRelationType = exports.isMythicItemName = exports.isMythicItemKey = exports.isLegendaryItemName = exports.isLegendaryItemKey = exports.isItemType = exports.isItemName = exports.isItemKey = exports.isBootsItemName = exports.isBootsItemKey = exports.getItemNameByKey = exports.getItemKeyByName = exports.getPositionImageURL = exports.isChampionName = exports.isChampionKey = exports.isChampionId = exports.getChampionNameByKey = exports.getChampionNameById = exports.getChampionKeyByName = exports.getChampionKeyById = exports.getChampionIdByName = void 0;
|
19
|
+
exports.isSpellName = exports.isSpellKey = exports.isSpellId = exports.getSpellNameByKey = void 0;
|
19
20
|
// # Constants
|
20
21
|
var DDPaths_1 = require("./Constants/DDPaths");
|
21
22
|
Object.defineProperty(exports, "DDPaths", { enumerable: true, get: function () { return DDPaths_1.DDPaths; } });
|
23
|
+
var Lanes_1 = require("./Constants/Lanes");
|
24
|
+
Object.defineProperty(exports, "Lanes", { enumerable: true, get: function () { return Lanes_1.Lanes; } });
|
25
|
+
var Levels_1 = require("./Constants/Levels");
|
26
|
+
Object.defineProperty(exports, "Levels", { enumerable: true, get: function () { return Levels_1.Levels; } });
|
27
|
+
var Positions_1 = require("./Constants/Positions");
|
28
|
+
Object.defineProperty(exports, "Positions", { enumerable: true, get: function () { return Positions_1.Positions; } });
|
29
|
+
var Skills_1 = require("./Constants/Skills");
|
30
|
+
Object.defineProperty(exports, "Skills", { enumerable: true, get: function () { return Skills_1.Skills; } });
|
22
31
|
// ## Champions
|
23
32
|
var ChampionIds_1 = require("./Constants/Champions/ChampionIds");
|
24
33
|
Object.defineProperty(exports, "ChampionIds", { enumerable: true, get: function () { return ChampionIds_1.ChampionIds; } });
|
package/package.json
CHANGED