UNPKG

@bgoff1/pokeapi-types

Version:

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

9 lines (8 loc) 271 B
import type { FlavorText } from "../common/flavor-text"; import type { NamedAPIResource } from "../common/named-api-resource"; export type SuperContestEffect = { id: number; appeal: number; flavor_text_entries: FlavorText[]; moves: NamedAPIResource[]; };