From efa7a7e13f5ced1d15470e977af3247605dccbeb Mon Sep 17 00:00:00 2001 From: Tim Wang Date: Fri, 1 Sep 2017 17:17:24 +0800 Subject: [PATCH] [TS] Add Dispatch default any type parameter --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index ced1559263..84973ab0d2 100644 --- a/index.d.ts +++ b/index.d.ts @@ -104,7 +104,7 @@ export function combineReducers(reducers: ReducersMapObject): Reducer; * transform, delay, ignore, or otherwise interpret actions or async actions * before passing them to the next middleware. */ -export interface Dispatch { +export interface Dispatch { (action: A): A; }