mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-11 18:02:16 +01:00
fix: temp comment out some code that causes some ESM import hell fix: tests, improve to not use 'as' in fixtures chore: replace 'as' with array spread to convert to ordinary (from readonly) array fix: bump expo to ^53.0.22 so it can be same as expo required by evolu (and can be deduped) fix: re-enable the FetureFlag callback chore: better naming for local-first-package in native fix: remove on bad circular dependency from local-first-storage reducer<->selectors chore: update madge (circular import, one more is removed) fix: disable Evolu labeling in Portfolio Tracker mode chore: use F.toMutable instead of a ... spread fix: depcheck ignore (peerdependecny: expo, expo-sqlite) only for relevant package fix: move feature-flag code out of the feature-falgs module into dev-tools fix: better selectors, no need to provide whole object, the string|undefined is all what is needed fix: bad key props in the list fix: use standard TextButton component fix: unify string|null for (all) label selectors fix: missing translation string chore: extract the labeling logic into separate thunk fix: depcheck fix: transaction name component has now correct variant fix: render debug inly when labeling is on
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>;
|
|
}
|
|
}
|