Interface: IRangeParams
A structure defining a range of values.
Example
configuration = {
widgets: {
common: {
fontSize: { max: 50, min: 5, step: 5 },
tracking: { max: 100, min: -50, step: 25 },
leading: { max: 50, min: 5, step: 5 },
},
},
};
Extended by
Properties
min?
optionalmin?:number
Sets a max value of a range.
max?
optionalmax?:number
Sets a min value of a range.
step?
optionalstep?:number
The parameter changes by this step value.