fix(alert): add missing type

This commit is contained in:
Maria Hutt
2025-03-28 14:17:06 -07:00
parent ec40cd5b3e
commit 6a819d5eeb

View File

@ -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<T extends ComponentRef = ComponentRef> {
component?: T;
componentProps?: ComponentProps<T>;
header?: string;
subHeader?: string;
message?: string | IonicSafeString;