UNPKG

@aomi/webapp-cli

Version:

a web app cli

14 lines (12 loc) 300 B
import { ofType } from 'redux-observable'; import { root } from '../constants/ActionTypes'; import { filter } from 'rxjs/operators'; export function start(action$) { return action$.pipe( ofType(root.start), filter(() => { console.log('app start.'); return false; }) ); }