The function more() is supposed to return an Observable from a get request
more()
Observable
export class Collection{ public more = (): Observab
In my case with Angular2 and rxjs, it worked with:
import {EmptyObservable} from 'rxjs/observable/EmptyObservable'; ... return new EmptyObservable(); ...