UNPKG

@bgoff1/pokeapi-types

Version:

Typescript types for the PokeAPI. For more information go to https://pokeapi.co/docs/v2.

9 lines (8 loc) 278 B
import type { Name } from "../common/name"; import type { NaturePokeathlonStatAffectSets } from "./nature-pokeathlon-stat-affect-sets"; export type PokeathlonStat = { id: number; name: string; names: Name[]; affecting_natures: NaturePokeathlonStatAffectSets; };