ng-alert
Version:
Simple Alert module for Angular version 2 and above.
15 lines (13 loc) • 366 B
text/typescript
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import {AlertService} from './alert.service';
import {AlertComponent} from './alert/alert.component';
({
imports: [
CommonModule
],
declarations: [AlertComponent],
providers: [AlertService],
exports : [AlertComponent]
})
export class NgAlertModule { }