From ac23e8a37f08bb8ec49ab4675745ca71fab5db7f Mon Sep 17 00:00:00 2001 From: Daniel Chao Date: Sat, 23 Jan 2016 23:09:19 -0800 Subject: [PATCH] Update redux-thunk.d.ts There's no "default" export in redux-thunk. --- redux-thunk/redux-thunk.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redux-thunk/redux-thunk.d.ts b/redux-thunk/redux-thunk.d.ts index 5e125e3bc..334a02997 100644 --- a/redux-thunk/redux-thunk.d.ts +++ b/redux-thunk/redux-thunk.d.ts @@ -16,6 +16,6 @@ declare module "redux-thunk" { var thunk: Thunk; - export default thunk; + export = thunk; }