UNPKG

368 BTypeScriptView Raw
1import { ValidationOptions } from '../ValidationOptions';
2export declare const IS_STRING = "isString";
3/**
4 * Checks if a given value is a real string.
5 */
6export declare function isString(value: unknown): value is string;
7/**
8 * Checks if a given value is a real string.
9 */
10export declare function IsString(validationOptions?: ValidationOptions): PropertyDecorator;