From 4ca30295d7d9f3dd7ba2e105952ff627f6b702a4 Mon Sep 17 00:00:00 2001 From: Noah Loomans Date: Thu, 21 Dec 2017 13:10:05 +0100 Subject: Add strict typing Except for functions because of https://github.com/reactjs/redux/issues/2709 --- src/client/react/reducers.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'src/client/react/reducers.ts') diff --git a/src/client/react/reducers.ts b/src/client/react/reducers.ts index 254fe76..6f92e1d 100644 --- a/src/client/react/reducers.ts +++ b/src/client/react/reducers.ts @@ -5,6 +5,7 @@ export interface State { search: SearchState, } +// @ts-ignore const rootReducer = combineReducers({ search, }); -- cgit v1.1