Fix name conflict (#343)

This commit is contained in:
Sung Won Cho 2019-11-22 17:36:38 +08:00 committed by GitHub
commit 45cc672671
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,7 @@
*/
import { Action } from 'redux';
import { ThunkAction } from 'redux-thunk';
import { ThunkAction as ReduxThunkAction } from 'redux-thunk';
import { AuthState } from './auth/types';
import { ComposerState } from './composer/types';
@ -35,7 +35,7 @@ export interface AppState {
}
// ThunkAction is a thunk action type
export type ThunkAction<T = void> = ThunkAction<
export type ThunkAction<T = void> = ReduxThunkAction<
Promise<T>,
AppState,
void,