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