import { AppCenterPush } from '@awesome-cordova-plugins/app-center-push/ngx';
constructor(private appCenterPush: AppCenterPush) { }
...
this.appCenterPush.setEnabled(true).then(() => {
this.appCenterPush.addEventListener('My Event').subscribe(pushNotification => {
console.log('Recived push notification', pushNotification);
});
});