import { map } from 'rxjs/operators'; export default function example(action$) { return action$.ofType('PING') .pipe( map(function () { return {type: 'PONG'}; }) ); };