21 lines
495 B
TypeScript
21 lines
495 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import {AltMetricsComponent} from './altmetrics.component';
|
|
import {SafeHtmlPipe} from './pipes/safeHTML.pipe';
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule, FormsModule
|
|
],
|
|
declarations: [
|
|
AltMetricsComponent, SafeHtmlPipe
|
|
],
|
|
exports: [
|
|
AltMetricsComponent, SafeHtmlPipe
|
|
]
|
|
})
|
|
export class AltMetricsModule { }
|