Is there a way to generate and return a pre-resolved (even if it's fake) Promise in angular2? In angularjs, you could achieve this by using return $q.defer().promise
I have considered trying:
return new Observable<any>.toPromise()
but I'm unsure if that is the correct approach.