mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-19 14:34:19 +00:00
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;
|