Generic type variables
The `Range` object generic type variables
Range<
Min
,
Max
,
Step
>
Range<
Min
,
Max
,
Step
>
A generic type variable constrained by the number
, by default of the value captured from the supplied min
indicates the minimum range type of a new Range
instance.
range.class.ts
Range<
Min
,
Max
,
Step
>
Range<
Min
,
Max
,
Step
>
A generic type variable constrained by the number
, by default of the value captured from the supplied max
indicates the maximum range type of a new Range
instance.
Range<
Min
,
Max
,
Step
>
Range<
Min
,
Max
,
Step
>
A generic type variable constrained by the number
, by default of the value equal to 1
, optionally captured from the supplied step
indicates the range step type of a new Range
instance.
Last updated