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; disabled?: boolean;
id?: string; id?: string;
handler?: (input: AlertInput) => void; handler?: (input: AlertInput) => void;
min?: number; min?: string | number;
max?: number; max?: string | number;
} }
export interface AlertButton { export interface AlertButton {