@compodoc/compodoc
Version:
The missing documentation tool for your Angular application
27 lines (22 loc) • 602 B
text/typescript
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { ListComponent } from './list.component';
import { TodoModule } from './todo/';
const MODULES = [TodoModule, BrowserModule];
/**
* The list of todos module
*
* Contains list component which can filter types of todos :
*
* | Type | API |
* | --- | --- |
* | completed | displayCompleted |
* | all | displayAll |
* | remaining | displayRemaining |
*/
export class ListModule {}