I’m trying to determine how/if I can convert a Promise rejection into a typed Observable. I have a login component with a function like this… and an authentication service with a method like this… How can I return an Observable<Credentials> if the Promise resolves, and bubble up the error if it rejects? I know I can make everything work if