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