- Notifications
You must be signed in to change notification settings - Fork27
Releases: aikoven/typescript-fsa
Releases · aikoven/typescript-fsa
v3.0.0
- Change
ActionCreatorfrom being atypealias tointerfacewith help ofmicrosoft/TypeScript#4260. Therefore, the oldest supported TypeScript version is now3.2.
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v3.0.0-beta-2
v3.0.0-beta-2Pre-release
Pre-release
- Fix type errors when trying to call action creators with unknown (generic) payload type (#56).
- Update docs, add JSDoc comments.
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v3.0.0-beta-1
v3.0.0-beta-1Pre-release
Pre-release
- Support skipping
paramsandresultof typevoidin Async Action Creators. Requires TypeScript 2.8.
constasync=actionCreator.async<void,{bar:string}>('ASYNC');// skipping argumentconststarted=async.started();// skipping `params`constdone=async.done({result:{bar:'bar'}});
constasync=actionCreator.async<{foo:string},void>('ASYNC');// skipping `result`constdone=async.done({params:{foo:'foo'}});
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v2.5.0
v2.4.0
- Added
toString()method to action creators returning its type (#33).
This is useful forredux-sagausers where you can now use
yieldtake(myActionCreator)
instead of
yieldtake(myActionCreator.type)
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v2.3.0
v2.2.0
Revert breaking change introduced in2.1.0
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v2.1.0
v2.0.0 typescript-fsa
Renamed package totypescript-fsa and decoupled from Redux (#12).
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v1.3.0
Assets2
Uh oh!
There was an error while loading.Please reload this page.