From 3d886c4396e07a1b488cc4e6229e9287e3f3aa2c Mon Sep 17 00:00:00 2001 From: Daniel Chao Date: Sat, 23 Jan 2016 23:20:31 -0800 Subject: [PATCH] Update redux-thunk-tests.ts --- redux-thunk/redux-thunk-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redux-thunk/redux-thunk-tests.ts b/redux-thunk/redux-thunk-tests.ts index 3a83e8058..df46fb92e 100644 --- a/redux-thunk/redux-thunk-tests.ts +++ b/redux-thunk/redux-thunk-tests.ts @@ -5,7 +5,7 @@ import { createStore, applyMiddleware, Store, Dispatch } from 'redux'; import * as thunk from 'redux-thunk'; -import { ThunkInterface } from 'redux-thunk'; +import ThunkInterface = ReduxThunk.ThunkInterface; import { Promise } from 'es6-promise'; declare var rootReducer: Function;