import { Component, Inject } from '@angular/core'; // #docregion export class HeroComponent { constructor(name) { this.name = name; } } HeroComponent.annotations = [ new Component({ selector: 'hero-di-inject', template: `

Hero: {{name}}

` }) ]; HeroComponent.parameters = [ [new Inject('heroName')] ]; // #enddocregion