quran-meta
    Preparing search index...

    Type Alias NumericRange<TStart, TEnd>

    NumericRange: Exclude<TEnd | LessThan<TEnd>, LessThan<TStart>>

    Creates a type representing a range of numbers from TStart to TEnd (inclusive).

    Type Parameters

    • TStart extends number

      The starting number of the range

    • TEnd extends number

      The ending number of the range

    This type uses the Exclude utility type along with a LessThan helper type to generate a union of all numbers within the specified range.