UNPKG

pokeapi-typescript

Version:

Typescript SDK for PokeAPI (https://pokeapi.co)

10 lines (9 loc) 326 B
import type { Name } from "../Utility/CommonModels"; import type { NamedApiResource } from "../Utility/NamedApiResourceList"; import type { PokemonSpecies } from "./PokemonSpecies"; export type PokemonHabitat = { id: number; name: string; names: Name[]; pokemon_species: NamedApiResource<PokemonSpecies>[]; };