interface IMinMax { includeUndefined?: boolean; min: number; max: number; } export default IMinMax;