From 75249b97104d00c1ca2451ac29369009a5f2b101 Mon Sep 17 00:00:00 2001 From: Dan Chao Date: Sat, 23 Jan 2016 23:44:31 -0800 Subject: [PATCH] fix dat thunkiness --- redux-thunk/redux-thunk.d.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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; } }