diff --git a/core/src/components/alert/alert-interface.ts b/core/src/components/alert/alert-interface.ts index 0870f8f829..f1995602e3 100644 --- a/core/src/components/alert/alert-interface.ts +++ b/core/src/components/alert/alert-interface.ts @@ -29,8 +29,8 @@ export interface AlertInput { disabled?: boolean; id?: string; handler?: (input: AlertInput) => void; - min?: number; - max?: number; + min?: string | number; + max?: string | number; } export interface AlertButton {