mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-16 18:17:31 +08:00
11 lines
377 B
TypeScript
11 lines
377 B
TypeScript
import { AlertOptions, alertController } from '@ionic/core/components';
|
|
import { IonAlert as IonAlertCmp } from '@ionic/core/components/ion-alert.js';
|
|
|
|
import { createControllerComponent } from './createControllerComponent';
|
|
|
|
export const IonAlert = /*@__PURE__*/ createControllerComponent<AlertOptions, HTMLIonAlertElement>(
|
|
'ion-alert',
|
|
alertController,
|
|
IonAlertCmp
|
|
);
|