HeroService returns an empty Observable, if the requested hero can't be found
[examples/angular-tour-of-heroes] / src / app / hero.ts
1 export interface Hero {
2   id: number;
3   name: string;
4 }