Interface iUintRange<T>

interface iUintRange<T> {
    end: T;
    start: T;
}

Type Parameters

Implemented by

Properties

Properties

end: T

The end of the range, inclusive.

start: T

The start of the range.