UNPKG

@compodoc/compodoc

Version:

The missing documentation tool for your Angular application

17 lines (14 loc) 471 B
import { NgModule, NO_ERRORS_SCHEMA } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { EmitterService } from 'app/shared/services/emitter.service'; import { footerModuleComponents } from './index'; /** * The footer module */ @NgModule({ imports: [BrowserModule], declarations: [...footerModuleComponents], exports: [FooterComponent, EmitterService], schemas: [NO_ERRORS_SCHEMA] }) export class FooterModule {}