bar.module.ts 608 B

123456789101112131415161718192021
  1. import { NgModule } from '@angular/core';
  2. import { BarDirective } from './bar.directive';
  3. import { BarComponent } from './bar.component';
  4. import { BarService } from './bar.service';
  5. /**
  6. * BarModule description
  7. *
  8. * see {@link http://www.google.fr}
  9. * see {@link http://www.google.fr|Second link}
  10. * see {@link http://www.google.uk Third link}
  11. * see [Last link]{@link http://www.google.jp}
  12. *
  13. * Watch [The BarComponent]{@link BarComponent}
  14. */
  15. @NgModule({
  16. declarations: [BarDirective, BarComponent],
  17. exports: [BarDirective, BarComponent],
  18. providers: [BarService]
  19. })
  20. export class BarModule {}