UNPKG

344 BTypeScriptView Raw
1import { ValidationOptions } from '../ValidationOptions';
2export declare const IS_ARRAY = "isArray";
3/**
4 * Checks if a given value is an array
5 */
6export declare function isArray(value: unknown): boolean;
7/**
8 * Checks if a given value is an array
9 */
10export declare function IsArray(validationOptions?: ValidationOptions): PropertyDecorator;