Last active
August 19, 2018 06:42
-
-
Save YonathanMeguira/b741393008868bf78f28d740a7ddcb57 to your computer and use it in GitHub Desktop.
Entity.ts
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
| export interface EntityState<E> { | |
| entities: HashMap<E>; | |
| ids: ID[]; | |
| loading: boolean; | |
| error: any; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment