typescript-fsa-redux-saga icon indicating copy to clipboard operation
typescript-fsa-redux-saga copied to clipboard

TypeScript FSA utilities for redux-saga

Results 7 typescript-fsa-redux-saga issues
Sort by recently updated
recently updated
newest added

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.5 to 1.0.7. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=path-parse&package-manager=npm_and_yarn&previous-version=1.0.5&new-version=1.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

``` export const getSubscriptions = actionCreator.async( "subscriptions/GET_SUBSCRIPTIONS", { skipStartedAction: true } ) // saga const getSubscriptionsSaga = bindAsyncAction(getSubscriptions)( function* (payload): SagaIterator { const { data }: AxiosResponse = yield call(get,...

Bumps [ini](https://github.com/isaacs/ini) from 1.3.4 to 1.3.7. Commits c74c8af 1.3.7 024b8b5 update deps, add linting 032fbaf Use Object.create(null) to avoid default object property hazards 2da9039 1.3.6 cfea636 better git push script,...

dependencies

### actions.ts ```ts import actionCreatorFactory from "typescript-fsa"; import { Image } from "services/api/models"; const actionCreator = actionCreatorFactory(); export const getImages = actionCreator< { page: number } | void >("GET_IMAGES"); export...

Bumps [diff](https://github.com/kpdecker/jsdiff) from 3.2.0 to 3.5.0. Changelog *Sourced from [diff's changelog](https://github.com/kpdecker/jsdiff/blob/master/release-notes.md).* > ## v3.5.0 - March 4th, 2018 > - Omit redundant slice in join method of diffArrays - 1023590...

dependencies

It was already discussed in #5, but was never implemented. I think it would be a useful feature to avoid having to wrap in try-catch or spawn when you don't...

Could you provide a real world example of using typescript-fsa with redux-saga? I'd like to see how you dispatch and `take` a typescript-fsa action in a saga. Thanks!