@compodoc/compodoc
Version:
The missing documentation tool for your Angular application
23 lines (17 loc) • 602 B
text/typescript
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { TodoComponent } from './todo.component';
import { FirstUpperPipe } from '../../shared/pipes/first-upper.pipe';
import { DoNothingDirective } from '../../shared/directives/do-nothing.directive';
const PIPES_AND_DIRECTIVES = [FirstUpperPipe, DoNothingDirective];
/**
* The todo module
*
* Contains the {@link TodoComponent}
*/
({
imports: [BrowserModule],
declarations: [TodoComponent, PIPES_AND_DIRECTIVES],
exports: [TodoComponent]
})
export class TodoModule {}