0
0
JRJose Romero
The code exports a custom selector that can be used to get the value of a property on a FeatureState object.
Library: angular
Shortcut: angular.ngrx.selector
export const selectFeatureProperty = createSelector(
selectFeature,
(state: FeatureState) => state.property
);