Skip to main content

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?

optional min?: number

Sets a max value of a range.


max?

optional max?: number

Sets a min value of a range.


step?

optional step?: number

The parameter changes by this step value.

Was this page helpful?