Created
December 22, 2022 21:15
-
-
Save ssougnez/2202b7f7b1abf5df1cb5e96318ad2349 to your computer and use it in GitHub Desktop.
This file contains 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
import { BaseEntity } from "@ssougnez/ng-store"; | |
export type Pokemon = BaseEntity<number> & { | |
name: string; | |
type: 'water' | 'fire' | 'electric' | 'grass' | 'bug' | 'normal' | 'poison'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment