Это может быть легко достигнуто, как показано ниже
В дочернем компоненте
@Output() close = new EventEmitter<any>();
emitEventMethodInChild() {
this.close.emit('close')
}
В родительском компоненте
this.componentRef.instance.close.subscribe(response => {
console.log('response from child to parent',response);
// Here you can receive data output form child to parent component
}
Здесь, в приведенном выше примере, я взял близко как Эмитент событий.
Надеюсь, это поможет!