pokedo

License

Poke API Wrapper for Deno, written in Typescript.

Documentation

Full API documentation can be found at Poke API.

Example

import { Pokedo } from "https://deno.land/x/pokedo@0.0.1/mod.ts";

const pokedo = new Pokedo();
pokedo.Pokemons.Pokemon.get("pikachu").then((result) => {
    console.log(result);
})