mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-19 13:49:24 +01:00
* fix(connect): make fetch work in react native * refactor(suite): move FW upgrade logic to common package * feat(mobile): make some atoms easily animatable * feat(mobile): firmware upgrade * fix: formatting and deps * refactor(suite): map operation to translation ID * refactor(suite): add transport selectors * refactor(suite): remove useFirmware hook * chore: bug fixes --------- Co-authored-by: Jan Komarek <jan.komarek@satoshilabs.com>
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>;
|
|
}
|
|
}
|