@otakusan76/nestjs-environment-variables-provider - v1.0.6
    Preparing search index...

    Interface IsNumberOptions

    Options to be passed to the NumberProperty decorator.

    interface IsNumberOptions {
        allowInfinity?: boolean;
        allowNaN?: boolean;
        maxDecimalPlaces?: number;
    }
    Index

    Properties

    allowInfinity?: boolean

    If allowInfinity is set to true, the validator will allow Infinity values.

    undefined
    
    allowNaN?: boolean

    If allowNaN is set to true, the validator will allow NaN values.

    undefined
    
    maxDecimalPlaces?: number

    If maxDecimalPlaces is set, the validator will ensure that the number has no more than the specified number of decimal places.

    undefined