UNPKG

ng-alert

Version:

Simple Alert module for Angular version 2 and above.

15 lines (13 loc) 366 B
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import {AlertService} from './alert.service'; import {AlertComponent} from './alert/alert.component'; @NgModule({ imports: [ CommonModule ], declarations: [AlertComponent], providers: [AlertService], exports : [AlertComponent] }) export class NgAlertModule { }