Created
April 7, 2017 10:20
-
-
Save cyrilletuzi/03c42b63e419b25a92b582d2bafe08fd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { NgModule } from '@angular/core'; | |
import { SomeComponent } from './some.component'; | |
import { SomeDirective } from './some.directive'; | |
import { SomePipe } from './some.pipe'; | |
import { SomeService } from './shared/some.service'; | |
@NgModule({ | |
declarations: [SomeComponent, SomeDirective, SomePipe], | |
providers: [SomeService] | |
}) | |
export class SomeModule {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment