@compodoc/compodoc
Version:
The missing documentation tool for your Angular application
22 lines (20 loc) • 608 B
text/typescript
import { NgModule } from '@angular/core';
import { BarDirective } from './bar.directive';
import { BarComponent } from './bar.component';
import { BarService } from './bar.service';
/**
* BarModule description
*
* see {@link http://www.google.fr}
* see {@link http://www.google.fr|Second link}
* see {@link http://www.google.uk Third link}
* see [Last link]{@link http://www.google.jp}
*
* Watch [The BarComponent]{@link BarComponent}
*/
({
declarations: [BarDirective, BarComponent],
exports: [BarDirective, BarComponent],
providers: [BarService]
})
export class BarModule {}