import { Attribute, Component, Inject, Optional, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; // #docregion class TitleComponent { constructor(titlePrefix, title) { this.titlePrefix = titlePrefix; this.title = title; this.msg = ''; } ok() { this.msg = 'OK!'; } } TitleComponent.annotations = [ new Component({ selector: 'hero-title', template: `
{{ msg }}
` }) ]; TitleComponent.parameters = [ [new Optional(), new Inject('titlePrefix')], [new Attribute('title')] ]; // #enddocregion class AppComponent { } AppComponent.annotations = [ new Component({ selector: 'hero-di-inject-additional', template: `