Files
2021-09-13 14:53:28 -04:00

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
);