mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 04:53:58 +08:00
14 lines
351 B
TypeScript
14 lines
351 B
TypeScript
import { Injectable } from '@angular/core';
|
|
import { AlertOptions, alertController } from '@ionic/core';
|
|
|
|
import { OverlayBaseController } from '../util/overlay';
|
|
|
|
@Injectable({
|
|
providedIn: 'root',
|
|
})
|
|
export class AlertController extends OverlayBaseController<AlertOptions, HTMLIonAlertElement> {
|
|
constructor() {
|
|
super(alertController);
|
|
}
|
|
}
|