Skip to content

lokshunhung/pokeapi-types

Repository files navigation

pokeapi-ts

TypeScript type definitions for PokeAPI v2

Install

$ yarn add -DE pokeapi-types

Usage

This package contains only type definitions and no runtime code. All type definitions are available under the named exported symbol PokeAPI.

Example: getting pokemon info for ditto using /api/v2/pokemon/{id_or_name}

import { PokeAPI } from "pokeapi-types";

async function getPokemon(idOrName: string): Promise<PokeAPI.Pokemon> {
    const url = `https://pokeapi.co/api/v2/pokemon/${idOrName}`;
    const response = await fetch(url);
    return await response.json();
}

// const ditto = await getPokemon("ditto");

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages