import { Injectable } from '@angular/core'; import { AlertOptions, alertController } from '@ionic/core'; import { OverlayBaseController } from '../util/overlay'; @Injectable({ providedIn: 'root', }) export class AlertController extends OverlayBaseController { constructor() { super(alertController); } }