openaire-library/utils/altmetrics.module.ts

21 lines
495 B
TypeScript
Raw Normal View History

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 { }