diff --git a/redux-thunk/redux-thunk.d.ts b/redux-thunk/redux-thunk.d.ts
index c660ae30c..aafaa0453 100644
--- a/redux-thunk/redux-thunk.d.ts
+++ b/redux-thunk/redux-thunk.d.ts
@@ -5,12 +5,10 @@
///
-import { Middleware, Dispatch } from 'redux';
-
declare module ReduxThunk {
- export interface Thunk extends Middleware {}
+ export interface Thunk extends Redux.Middleware {}
export interface ThunkInterface {
- (dispatch: Dispatch, getState?: () => T): any;
+ (dispatch: Redux.Dispatch, getState?: () => T): any;
}
}