2017-02-22 18:13:21 +00:00
|
|
|
// #docregion
|
|
|
|
|
export class Hero {
|
|
|
|
|
id: number;
|
|
|
|
|
name: string;
|
|
|
|
|
emotion?: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const heroes: Hero[] = [
|
2018-03-13 18:06:13 +01:00
|
|
|
{ id: 1, name: 'Mr. Nice', emotion: 'happy' },
|
|
|
|
|
{ id: 2, name: 'Narco', emotion: 'sad' },
|
2017-02-22 18:13:21 +00:00
|
|
|
{ id: 3, name: 'Windstorm', emotion: 'confused' },
|
2018-03-13 18:06:13 +01:00
|
|
|
{ id: 4, name: 'Magneta' }
|
2017-02-22 18:13:21 +00:00
|
|
|
];
|