Last active
June 17, 2022 10:55
-
-
Save NyaGarcia/0625bcb5c9bb215aee7dfbc5cb02483e to your computer and use it in GitHub Desktop.
Exporting the pokemon interface
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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