https://github.com/angular/angular
Raw File
Tip revision: a5b5b7d5ef84b9852d2115dd7a764f4ab3299379 authored by Joey Perrott on 17 April 2024, 17:57:53 UTC
refactor: migrate core/primitives to prettier formatting (#55387)
Tip revision: a5b5b7d
mock-heroes.ts
import { Hero } from './hero';

export const HEROES: Hero[] = [
  { id: 12, name: 'Dr. Nice' },
  { id: 13, name: 'Bombasto' },
  { id: 14, name: 'Celeritas' },
  { id: 15, name: 'Magneta' },
  { id: 16, name: 'RubberMan' },
  { id: 17, name: 'Dynama' },
  { id: 18, name: 'Dr. IQ' },
  { id: 19, name: 'Magma' },
  { id: 20, name: 'Tornado' }
];
back to top