https://github.com/angular/angular
Raw File
Tip revision: a491295d9e099c05ec26bee8b694cda688e44b33 authored by Andrew Scott on 04 August 2021, 16:59:03 UTC
release: cut the v12.1.5 release (#43044)
Tip revision: a491295
hero.ts
// #docregion
export interface Hero {
  id: number;
  name: string;
  emotion?: string;
}

export const heroes: Hero[] = [
  { id: 1, name: 'Dr Nice', emotion: 'happy' },
  { id: 2, name: 'Narco', emotion: 'sad' },
  { id: 3, name: 'Windstorm', emotion: 'confused' },
  { id: 4, name: 'Magneta' }
];
back to top