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