The `get` accessor obtains the minimum range
Last updated 1 year ago
Was this helpful?
RangeError.prototype.min
The accessor obtains the minimum range of generic type variable that causes an error to be thrown(or not thrown), if set, otherwise returns .
public get min(): Min | undefined { return this.#min; }
|
The return value is the minimum range of generic type variable or .
// Example usage. import { RangeError } from '@angular-package/error'; // Returns "9". new RangeError('problem', 'Fix accessor.', '(AE:427)', 9, 27).min;
get
undefined
Min