import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core'; @Component({ selector: 'cm-alert-doc-3', templateUrl: './alert-doc-3.component.html', styleUrls: ['./alert-doc-3.component.css'] }) export class AlertDoc3Component implements OnInit{ afterClose() { alert('close'); } constructor() {} ngOnInit() {} }