I don't quite understand what is the purpose of ActionsObservable. There's nothing about it in the documentation but I see it being used here and there in examples.
Why not just use:
import { of } from 'rxjs/observable/of';
or
import { from } from 'rxjs/observable/from';
?