1 | import { ValidationOptions } from '../ValidationOptions';
|
2 | export declare const IS_NEGATIVE = "isNegative";
|
3 | /**
|
4 | * Checks if the value is a negative number smaller than zero.
|
5 | */
|
6 | export declare function isNegative(value: unknown): boolean;
|
7 | /**
|
8 | * Checks if the value is a negative number smaller than zero.
|
9 | */
|
10 | export declare function IsNegative(validationOptions?: ValidationOptions): PropertyDecorator;
|