Skip to content

Instantly share code, notes, and snippets.

@ssougnez
Created December 22, 2022 21:15
Embed
What would you like to do?
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