min!
The minimum range of a specified `Range` object
Range.prototype.min
Range.prototype.min
The min
read-only property is the minimum range of generic type variable Min
of a specified Range
object.
public readonly min!: Min;
Type
Example usage
// Example usage.
import { Range } from '@angular-package/range';
// Create new instance.
// Returns Range {min: 4, max: 27} of Range<4, 27, 1>.
const range = new Range(4, 27);
// Returns 4 of type 4.
range.min;
Last updated