UNPKG

324 BTypeScriptView Raw
1import { ValidationOptions } from '../ValidationOptions';
2export declare const IS_INT = "isInt";
3/**
4 * Checks if value is an integer.
5 */
6export declare function isInt(val: unknown): boolean;
7/**
8 * Checks if value is an integer.
9 */
10export declare function IsInt(validationOptions?: ValidationOptions): PropertyDecorator;