numeric-quantity - v3.2.1
    Preparing search index...

    Type Alias NumericQuantityReturnType<T>

    NumericQuantityReturnType: T extends { verbose: true }
        ? NumericQuantityVerboseResult
        : T extends { bigIntOnOverflow: true } ? number | bigint : number

    Resolves the return type of numericQuantity based on the options provided.

    Type Parameters