UNPKG

509 BTypeScriptView Raw
1import { ValidationOptions } from '../ValidationOptions';
2export declare const IS_HALF_WIDTH = "isHalfWidth";
3/**
4 * Checks if the string contains any half-width chars.
5 * If given value is not a string, then it returns false.
6 */
7export declare function isHalfWidth(value: unknown): boolean;
8/**
9 * Checks if the string contains any full-width chars.
10 * If given value is not a string, then it returns false.
11 */
12export declare function IsHalfWidth(validationOptions?: ValidationOptions): PropertyDecorator;