Project

General

Profile

1
import { NgModule }            from '@angular/core';
2
import { CommonModule }        from '@angular/common';
3
import { FormsModule }         from '@angular/forms';
4

    
5
import {AltMetricsComponent} from './altmetrics.component';
6
import {SafeHtmlPipe} from './pipes/safeHTML.pipe';
7

    
8

    
9
@NgModule({
10
  imports: [
11
    CommonModule, FormsModule
12
  ],
13
  declarations: [
14
     AltMetricsComponent, SafeHtmlPipe
15
  ],
16
  exports: [
17
      AltMetricsComponent, SafeHtmlPipe
18
    ]
19
})
20
export class AltMetricsModule { }
(3-3/16)