mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-10 18:16:45 +00:00
* First pass at handling API failure. * Bity saga logic upgrade. * Reusable response.ok logic. Small optimization to array join. * Flow fixes. * Streamlined some error handling, moved types.
6 lines
135 B
JavaScript
6 lines
135 B
JavaScript
import type { Effect } from 'redux-saga/effects';
|
|
|
|
export type Yield = Effect | {};
|
|
export type Return = void;
|
|
export type Next = any;
|