Is it possible to check the type of stream in observable? I use revx-observable to create epics that follow the actions to be submitted, and if there is a match, they run some asynchronous code. The action$ argument for the epic is observable, but there seems to be no Observable<> type in Flow. How to properly assign the action$ stream type?
// @ flow const fetchApiEpic = (action$) => { ... };
action$ content:

observable redux-observable flowtype flow-typed
Jon cursi
source share