Remove unused references to ThunkAction. Fixes a build error since @types/redux-thunk 2.2.0 removes the ThunkAction export.

This commit is contained in:
SteveSandersonMS
2017-01-18 19:14:17 +00:00
parent a046bd2021
commit 867d070263
3 changed files with 3 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
import { Action, Reducer, ThunkAction } from 'redux';
import { Action, Reducer } from 'redux';
// -----------------
// STATE - This defines the type of data maintained in the Redux store.

View File

@@ -1,5 +1,5 @@
import { fetch, addTask } from 'domain-task';
import { Action, Reducer, ThunkAction, ActionCreator } from 'redux';
import { Action, Reducer, ActionCreator } from 'redux';
import { AppThunkAction } from './';
// -----------------

View File

@@ -9,7 +9,6 @@
"@types/react-router": "^2.0.30",
"@types/react-router-redux": "^4.0.30",
"@types/redux": "3.5.27",
"@types/redux-thunk": "^2.1.28",
"@types/source-map": "^0.1.28",
"@types/uglify-js": "^2.0.27",
"@types/webpack": "^1.12.35",
@@ -37,7 +36,7 @@
"react-router": "^2.8.1",
"react-router-redux": "^4.0.6",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"redux-thunk": "^2.2.0",
"style-loader": "^0.13.0",
"ts-loader": "^0.8.1",
"typescript": "^2.0.3",