MyCrypto/common/sagas/types.js
Bryan Fillmer 2616129409 Create a basic saga pattern to handle potential network errors. (#144)
* 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.
2017-08-31 09:30:46 -07:00

6 lines
135 B
JavaScript

import type { Effect } from 'redux-saga/effects';
export type Yield = Effect | {};
export type Return = void;
export type Next = any;