Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-03-11 09:43:23 +01:00
commit f235c62c58
31 changed files with 1474 additions and 0 deletions

20
interfaces/Type.ts Normal file
View File

@@ -0,0 +1,20 @@
enum Type {
COLORLESS,
DARKNESS,
DRAGON,
FAIRY,
FIGHTING,
FIRE,
GRASS,
LIGHTNING,
METAL,
PSYCHIC,
WATER,
}
export interface TypeSimple {
id: Type
name: string
}
export default Type