mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-10 17:28:53 +01:00
* feat(suite-common):analytics * chore(suite-common): add tests for analytics * fix(suite-common): formatting * fix(suite-common): analytics reducer, types * fix(suite-native): reducers inits * fix(suite-native): deps * fix(suite-native): thunks types * fix(suite-native): remove empty string type * fix(suite-common): fix default env
8 lines
212 B
TypeScript
8 lines
212 B
TypeScript
import { AsyncThunkAction } from '@reduxjs/toolkit';
|
|
|
|
declare module 'redux' {
|
|
export interface Dispatch {
|
|
<TThunk extends AsyncThunkAction<any, any, any>>(thunk: TThunk): ReturnType<TThunk>;
|
|
}
|
|
}
|