fix(alert): update alert min/max interface (#15987)

Fixes #15986
This commit is contained in:
Abdelaziz Bennouna
2018-10-23 02:42:19 +01:00
committed by Adam Bradley
parent a74e5653d5
commit a0c60ffd1e

View File

@ -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 {