docs: Dependency Injection guides for CLI (#19892)

PR Close #19892
This commit is contained in:
Ward Bell
2017-10-23 17:44:49 -07:00
committed by Jason Aden
parent 5a2531ee45
commit c03186013c
25 changed files with 635 additions and 905 deletions

View File

@ -0,0 +1,25 @@
/// Dummy modules to satisfy Angular Language Service
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { AppModule } from './app.module';
////////
import { AppComponent as AppComponent1 } from './app.component.1';
@NgModule({
imports: [ CommonModule, AppModule ],
declarations: [ AppComponent1 ]
})
export class DummyModule1 {}
/////////
import { AppComponent as AppComponent2 } from './app.component.2';
@NgModule({
imports: [ CommonModule, AppModule ],
declarations: [ AppComponent2 ]
})
export class DummyModule2 {}