nts-ng2-components
Version:
Paquete de componentes para Angular2 desarrollado por NITSNETS.
19 lines (14 loc) • 447 B
text/typescript
import { Component, ElementRef, Output, EventEmitter, Input } from '@angular/core';
({
selector: 'nts-popup-container',
templateUrl: 'container.component.html',
styleUrls: ['container.component.scss'],
})
export class NtsPopupContainerComponent {
() closeBtn = true;
() close = new EventEmitter();
constructor(public elementRef: ElementRef) { }
onClose() {
this.close.emit();
}
}