class-validator-extended - v4.2.0
    Preparing search index...

    Function MinBigInt

    • Checks if the given value is a BigInt not less than minimum.

      // Ensure the value is greater than 9000.
      @MinBigInt(9_001)
      overNineThousand: BigInt

      Parameters

      • minimum: number | bigint

        The minimum allowed value.

      • Optionaloptions: ValidationOptions

        Generic class-validator options.

      Returns PropertyDecorator