The min read-only property is the minimum range of generic type variable of a specified object.
range.class.ts
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;