Skip to main content

types/ERange

Type Aliases

ERange<Low, High>

type ERange<Low, High>: Exclude<NaturalNumbersLessThan<High>, NaturalNumbersLessThan<Low>>;

Helper type to get a range of integers. It is inclusive on the lower end and exclusive on the high end. (The "E" in the type name stands for exclusive.)

For example, ERange<3, 5> will return 3 | 4.

From: https://stackoverflow.com/questions/39494689/is-it-possible-to-restrict-number-to-a-certain-range

Type Parameters

Type Parameter
Low extends number
High extends number

Defined in

types/ERange.ts:12