From 81f1548274fd76de5ae34e375241890c0827315a Mon Sep 17 00:00:00 2001 From: Daniel Chao Date: Sat, 23 Jan 2016 23:26:11 -0800 Subject: [PATCH] Update redux-thunk.d.ts --- redux-thunk/redux-thunk.d.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; }