UNPKG

474 BTypeScriptView Raw
1import { ValidationOptions } from '../ValidationOptions';
2export declare const IS_LOWERCASE = "isLowercase";
3/**
4 * Checks if the string is lowercase.
5 * If given value is not a string, then it returns false.
6 */
7export declare function isLowercase(value: unknown): boolean;
8/**
9 * Checks if the string is lowercase.
10 * If given value is not a string, then it returns false.
11 */
12export declare function IsLowercase(validationOptions?: ValidationOptions): PropertyDecorator;