Created
December 22, 2022 21:16
-
-
Save ssougnez/17f6d05feaa7e3bd49cff647b23045f4 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 { createEntities, Entities } from "@ssougnez/ng-store"; | |
import { Pokemon } from "../models/pokemon.model"; | |
export type AppState = { | |
pokemons: Entities<Pokemon>; | |
} | |
export const initial: AppState = { | |
pokemons: createEntities<Pokemon>([], ['type']) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment