UNPKG

356 BTypeScriptView Raw
1import { ValidationOptions } from '../ValidationOptions';
2export declare const IS_PORT = "isPort";
3/**
4 * Check if the string is a valid port number.
5 */
6export declare function isPort(value: unknown): boolean;
7/**
8 * Check if the string is a valid port number.
9 */
10export declare function IsPort(validationOptions?: ValidationOptions): PropertyDecorator;