@pkmn/dex-types 0.10.5 → 0.10.7

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.
Files changed (2) hide show
  1. package/index.d.ts +1 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -242,7 +242,7 @@ export interface MoveData extends EffectData, HitEffect {
242
242
 
243
243
  export type SpeciesTag =
244
244
  'Mythical' | 'Restricted Legendary' | 'Sub-Legendary' | 'Ultra Beast' | 'Paradox';
245
- export interface SpeciesAbility<A = string> { 0: A; 1?: A; H?: A; S?: A }
245
+ export interface SpeciesAbility<A = string> {0: A; 1?: A; H?: A; S?: A}
246
246
 
247
247
  export interface SpeciesData {
248
248
  abilities: SpeciesAbility;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pkmn/dex-types",
3
- "version": "0.10.5",
3
+ "version": "0.10.7",
4
4
  "types": "index.d.ts",
5
5
  "description": "Common Pokémon Showdown Dex types shared by @pkmn/dex and @pkmn/sim",
6
6
  "repository": "github:pkmn/ps",