So i have a component which emits boolean when an action button is pressed
@Output() public action_one = new EventEmitter<void>();
How can i know the emit value from modal,
let modal = this.modalCtrl.create(ModalComponent, {data: info});
modal.present();