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

    Example

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

    Parameters

    • minimum: number | bigint

      The minimum allowed value.

    • Optional options: ValidationOptions

      Generic class-validator options.

    Returns PropertyDecorator