Skip to content

Instantly share code, notes, and snippets.

@marianocodes
Last active August 10, 2018 04:24
Show Gist options
  • Save marianocodes/1f305f340a5b4f5a6408ed0e0d7bf10c to your computer and use it in GitHub Desktop.
Save marianocodes/1f305f340a5b4f5a6408ed0e0d7bf10c to your computer and use it in GitHub Desktop.
NgRx Entities State
const adapterCar = createEntityAdapter<Car>();
const adapterPlace = createEntityAdapter<Place>();
const carInitialState: CarState = adapterCar.getInitialState({ total: 0 });
const placeInitialState: PlaceState = adapterPlace.getInitialState({ total: 0 });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment