Redux is a predictable state container for JavaScript apps from Redux.org
# selector before
store.select('count')
# selector after
store.pipe(select('count'))
# ofType before
@Effect() myActions$ = this.action$
.ofType('LOGIN')
...
# ofType after
@Effect() authActions$ = this.action$.pipe(
ofType('LOGIN'),
...
)