Project

General

Profile

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

    
5
import {AlertModal} from './alert';
6
import {ModalModule} from './modal.module';
7
import {SafeHtmlPipeModule} from "../pipes/safeHTMLPipe.module";
8

    
9
@NgModule({
10
  imports: [CommonModule, FormsModule, ModalModule, SafeHtmlPipeModule],
11
  declarations: [
12
    AlertModal
13
  ],
14
  exports: [
15
    AlertModal
16
  ]
17
})
18
export class AlertModalModule { }
(2-2/8)