import {EventEmitter, Component, Input, Output} from "@angular/core"; @Component({ selector: "strongs", templateUrl: "strongs.html" }) export class Strongs { @Output() onClose = new EventEmitter(); @Input() item: StrongsResult; @Input() cardItem: CardItem; constructor() { } close() { this.onClose.emit(this.cardItem); } }