This plugin enables Ionic Pro services like live updates and error monitoring
import { Pro, AppInfo, DeployInfo } from '@ionic-native/pro';
constructor(private pro: Pro) { }
// Get app info
this.pro.getAppInfo().then((res: AppInfo) => {
console.log(res)
})
// Get live update info
this.pro.deploy.info().then((res: DeployInfo) => {
console.log(res)
})