UNPKG

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