lol-constants 1.5.3 → 1.5.4

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.
@@ -1,2 +1,2 @@
1
1
  import { ChampionId } from '../../types';
2
- export declare function isChampionId(id: string): id is ChampionId;
2
+ export declare function isChampionId(id: any): id is ChampionId;
@@ -1,2 +1,2 @@
1
1
  import { ChampionName } from '../../types';
2
- export declare function isChampionName(name: string): name is ChampionName;
2
+ export declare function isChampionName(name: any): name is ChampionName;
@@ -1,2 +1,2 @@
1
1
  import { ItemName } from '../../types';
2
- export declare function isItemName(name: string): name is ItemName;
2
+ export declare function isItemName(name: any): name is ItemName;
@@ -1,2 +1,2 @@
1
1
  import { RuneName } from '../../types';
2
- export declare function isRuneName(name: string): name is RuneName;
2
+ export declare function isRuneName(name: any): name is RuneName;
@@ -1,2 +1,2 @@
1
1
  import { StatRuneName } from '../../types';
2
- export declare function isStatRuneName(name: string): name is StatRuneName;
2
+ export declare function isStatRuneName(name: any): name is StatRuneName;
@@ -1,2 +1,2 @@
1
1
  import { TreeRuneName } from '../../types';
2
- export declare function isTreeRuneName(name: string): name is TreeRuneName;
2
+ export declare function isTreeRuneName(name: any): name is TreeRuneName;
@@ -1,2 +1,2 @@
1
1
  import { SpellId } from '../../types';
2
- export declare function isSpellId(id: string): id is SpellId;
2
+ export declare function isSpellId(id: any): id is SpellId;
@@ -1,2 +1,2 @@
1
1
  import { SpellName } from '../../types';
2
- export declare function isSpellName(name: string): name is SpellName;
2
+ export declare function isSpellName(name: any): name is SpellName;
@@ -1,2 +1,2 @@
1
1
  import { Position } from '../types';
2
- export declare function isPosition(position: string): position is Position;
2
+ export declare function isPosition(position: any): position is Position;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lol-constants",
3
- "version": "1.5.3",
3
+ "version": "1.5.4",
4
4
  "description": "League of Legends constants and data resources, such as champion, item, runes reforged, summoner spells.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",