Skip to content

Instantly share code, notes, and snippets.

@NyaGarcia
Last active June 17, 2022 10:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NyaGarcia/0625bcb5c9bb215aee7dfbc5cb02483e to your computer and use it in GitHub Desktop.
Save NyaGarcia/0625bcb5c9bb215aee7dfbc5cb02483e to your computer and use it in GitHub Desktop.
Exporting the pokemon interface
export interface Pokemon {
height: number;
id: string;
description: string;
imgUrl: string;
name: string;
type: string;
weight: number;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment