fix type error

This commit is contained in:
newraina
2017-03-20 13:18:42 +08:00
parent a27cd00392
commit 3297b30d56
3 changed files with 5 additions and 3 deletions
+2 -2
View File
@@ -7,9 +7,9 @@
* inspired by @types/redux-actions, thanks.
*/
import Redux from 'redux';
import * as Redux from 'redux';
export as namespace ReduxAction
export as namespace ReduxAction;
interface BaseAction {
type: string;
+2 -1
View File
@@ -1,5 +1,6 @@
{
"dependencies": {
"redux": "^3.6.0"
"redux": "^3.6.0",
"redux-thunk": "^2.2.0"
}
}
+1
View File
@@ -1,5 +1,6 @@
import * as ReduxAction from 'redux-action';
import * as ReduxThunk from 'redux-thunk';
import * as Redux from 'redux';
interface Payload {