mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
89006b1025
add punctuation to dr iq name to aid in clarity Fixes #46011 PR Close #47525
10 lines
132 B
TypeScript
10 lines
132 B
TypeScript
export interface Hero {
|
|
name: string;
|
|
}
|
|
|
|
export const HEROES = [
|
|
{name: 'Dr. IQ'},
|
|
{name: 'Magneta'},
|
|
{name: 'Bombasto'}
|
|
];
|