Last active
August 10, 2018 04:23
-
-
Save marianocodes/5d8371e17df3ac6f796ba7b18d92056c to your computer and use it in GitHub Desktop.
NgRx Entities State
This file contains hidden or 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
interface CarState extends EntityState<Car> { | |
total: number; | |
} | |
interface PlaceState extends EntityState<Place> { | |
total: number; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment