mirror of
https://github.com/dnote/dnote
synced 2026-03-14 22:45:50 +01:00
Fix name conflict (#343)
This commit is contained in:
parent
c0719053ef
commit
45cc672671
1 changed files with 2 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue