Skip to content

Instantly share code, notes, and snippets.

@cyrilletuzi
Created April 7, 2017 10:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cyrilletuzi/03c42b63e419b25a92b582d2bafe08fd to your computer and use it in GitHub Desktop.
Save cyrilletuzi/03c42b63e419b25a92b582d2bafe08fd to your computer and use it in GitHub Desktop.
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