Files
Alexander Wiebe 89006b1025 fix(docs-infra): add punctuation to dr iq (#47525)
add punctuation to dr iq name to aid in clarity

Fixes #46011

PR Close #47525
2022-09-29 16:43:55 -07:00

10 lines
132 B
TypeScript

export interface Hero {
name: string;
}
export const HEROES = [
{name: 'Dr. IQ'},
{name: 'Magneta'},
{name: 'Bombasto'}
];