closes #1858 HEROES is a `const` and is defined as a `const` originally: https://github.com/angular/angular.io/blob/master/public/docs/_examples/toh-2/ts/app/app.component.ts#L10
16 lines
369 B
TypeScript
16 lines
369 B
TypeScript
// #docregion
|
|
import { Hero } from './hero';
|
|
|
|
export const HEROES: Hero[] = [
|
|
{id: 11, name: 'Mr. Nice'},
|
|
{id: 12, name: 'Narco'},
|
|
{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'}
|
|
];
|