aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/reducers.ts
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2017-12-21 13:10:05 +0100
committerNoah Loomans <noahloomans@gmail.com>2017-12-21 13:10:05 +0100
commit4ca30295d7d9f3dd7ba2e105952ff627f6b702a4 (patch)
tree48285ecb1957171ebb9b0106aaf2d1a184972d0e /src/client/react/reducers.ts
parentf0c8cf0e79f003514fd65a70def5820205955a77 (diff)
Add strict typing
Except for functions because of https://github.com/reactjs/redux/issues/2709
Diffstat (limited to 'src/client/react/reducers.ts')
-rw-r--r--src/client/react/reducers.ts1
1 files changed, 1 insertions, 0 deletions
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<State>({
search,
});