[react-router-redux] Update action payload type (#11559)

The payload for React Redux Router action is a location object. For more information look at the source code [here](https://github.com/reactjs/react-router-redux/blob/master/src/sync.js#L95)
This commit is contained in:
Stefan Dobrev
2016-09-30 15:11:07 +03:00
committed by Masahiro Wakame
parent 07453cbf8e
commit da9bf4d701

View File

@@ -29,7 +29,7 @@ declare namespace ReactRouterRedux {
type RouterAction = {
type: string
payload?: any
payload?: LocationDescriptor
}
interface RouteActions {