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,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 './';
// -----------------