Interval
Represents a mathematical interval with start, end, and optional step.
Since
2.0.0
Example
const timeInterval: Interval = {
start: 0,
end: 10,
step: 1
};
Properties
start: number
Start value of the interval
end: number
End value of the interval
step?: number
Step size for progression (default: 1)