2017-12-19 13:53:46 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
import {AltMetricsComponent} from './altmetrics.component';
|
2018-04-17 15:46:17 +02:00
|
|
|
import {SafeHtmlPipeModule} from './pipes/safeHTMLPipe.module';
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2018-04-17 15:46:17 +02:00
|
|
|
CommonModule, FormsModule, SafeHtmlPipeModule
|
2017-12-19 13:53:46 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
2018-04-17 15:46:17 +02:00
|
|
|
AltMetricsComponent
|
2017-12-19 13:53:46 +01:00
|
|
|
],
|
|
|
|
exports: [
|
2018-04-17 15:46:17 +02:00
|
|
|
AltMetricsComponent
|
2017-12-19 13:53:46 +01:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class AltMetricsModule { }
|