Just a small patch version with:
join(...tasks)
- this effect creator will accept array of tasks from now on, it's just a shorthand (more obvious one) fortasks.map(join)
take(array)
- array can be now of mixed types - strings and predicate functions so this is possible nowyield take(['ACTION_A', ac => ac.payload])
- added TS typings for helpers' effect creators from the
redux-saga/effects
, that meanstakeEvery
,takeLatest
,throttle
(thanks to @mcrawshaw)