Skip to content

Instantly share code, notes, and snippets.

@ssougnez
Created December 22, 2022 21:15
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 ssougnez/2202b7f7b1abf5df1cb5e96318ad2349 to your computer and use it in GitHub Desktop.
Save ssougnez/2202b7f7b1abf5df1cb5e96318ad2349 to your computer and use it in GitHub Desktop.
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