diff --git a/core/src/components/alert/alert-interface.ts b/core/src/components/alert/alert-interface.ts index f4ea72af21..a671baf678 100644 --- a/core/src/components/alert/alert-interface.ts +++ b/core/src/components/alert/alert-interface.ts @@ -1,8 +1,16 @@ -import type { AnimationBuilder, LiteralUnion, Mode, TextFieldTypes, ComponentRef } from '../../interface'; +import type { + AnimationBuilder, + LiteralUnion, + Mode, + TextFieldTypes, + ComponentRef, + ComponentProps, +} from '../../interface'; import type { IonicSafeString } from '../../utils/sanitization'; export interface AlertOptions { component?: T; + componentProps?: ComponentProps; header?: string; subHeader?: string; message?: string | IonicSafeString;