UNPKG

@bgoff1/pokeapi-types

Version:

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

10 lines (9 loc) 189 B
import type { Name } from "../common/name"; export type Language = { id: number; name: string; official: boolean; iso639: string; iso3166: string; names: Name[]; };