typescript
Classes
export class Hero {
id: number;
name: string;
}Services:
constructor(private heroService: HeroService) {
}
ngOnInit() {
this.heroes = this.heroService.getHeroes();
}Last updated
export class Hero {
id: number;
name: string;
}constructor(private heroService: HeroService) {
}
ngOnInit() {
this.heroes = this.heroService.getHeroes();
}Last updated