Generic type variables
The `RangeError` object generic type variables
RangeError<
Id
,Min,Max>
RangeError<
Id
,Min,Max>
A generic type variable constrained by the string
, by default of the value captured from the provided id
indicates the identification type of a new RangeError
instance.
range-error.class.ts
RangeError<Id,
Min
,Max>
RangeError<Id,
Min
,Max>
A generic type variable constrained by the number
and undefined
, by default of the value captured from the provided min
indicates the minimum range type of a new RangeError
instance.
range-error.class.ts
RangeError<Id,Min,
Max
>
RangeError<Id,Min,
Max
>
A generic type variable constrained by the number
and undefined
by default of the value captured from the provided max
indicates the maximum range type of a new RangeError
instance.
range-error.class.ts
Last updated