1 | import { ValidationOptions } from '../ValidationOptions';
|
2 | export declare const MAX = "max";
|
3 | /**
|
4 | * Checks if the first number is less than or equal to the second.
|
5 | */
|
6 | export declare function max(num: unknown, max: number): boolean;
|
7 | /**
|
8 | * Checks if the first number is less than or equal to the second.
|
9 | */
|
10 | export declare function Max(maxValue: number, validationOptions?: ValidationOptions): PropertyDecorator;
|