UNPKG

623 BTypeScriptView Raw
1import { ValidationOptions } from '../ValidationOptions';
2import ValidatorJS from 'validator';
3export declare const IS_ALPHANUMERIC = "isAlphanumeric";
4/**
5 * Checks if the string contains only letters and numbers.
6 * If given value is not a string, then it returns false.
7 */
8export declare function isAlphanumeric(value: unknown, locale?: ValidatorJS.AlphanumericLocale): boolean;
9/**
10 * Checks if the string contains only letters and numbers.
11 * If given value is not a string, then it returns false.
12 */
13export declare function IsAlphanumeric(locale?: string, validationOptions?: ValidationOptions): PropertyDecorator;