docs(aio): ward's changes

This commit is contained in:
Ward Bell
2017-06-19 23:32:30 -07:00
committed by Hans
parent b1dab181e0
commit 37cdc4f759
18 changed files with 1095 additions and 494 deletions

View File

@ -0,0 +1,11 @@
export class Hero {
id: number;
name: string;
}
export const HEROES: Hero[] = [
{ id: 11, name: 'Mr. Nice' },
{ id: 12, name: 'Narco' },
{ id: 13, name: 'Bombasto' },
{ id: 14, name: 'Celeritas' }
];