diff --git a/redux-action/index.d.ts b/redux-action/index.d.ts index 212b3540a9..eff19178e9 100644 --- a/redux-action/index.d.ts +++ b/redux-action/index.d.ts @@ -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; diff --git a/redux-action/package.json b/redux-action/package.json index 36ce503807..973078f95d 100644 --- a/redux-action/package.json +++ b/redux-action/package.json @@ -1,5 +1,6 @@ { "dependencies": { - "redux": "^3.6.0" + "redux": "^3.6.0", + "redux-thunk": "^2.2.0" } } diff --git a/redux-action/redux-action-tests.ts b/redux-action/redux-action-tests.ts index a32b73aa74..cad92bba34 100644 --- a/redux-action/redux-action-tests.ts +++ b/redux-action/redux-action-tests.ts @@ -1,5 +1,6 @@ import * as ReduxAction from 'redux-action'; +import * as ReduxThunk from 'redux-thunk'; import * as Redux from 'redux'; interface Payload {