mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 18:45:38 +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;
|