Is it possible to flow type check an observable? I am using redux-observable to build out epics that watch for actions to dispatch and, if there is a match, they run some async code. The action$
argument to the epic is an observable, but there seems to be no Observable<>
type in Flow. How does one properly assign a flow type to action$
?
// @ flow
const fetchApiEpic = (action$) => {
...
};
Contents of action$
: