UNPKG

validatable

Version:

A library for synchronous and asynchronous input validation.

8 lines (7 loc) 214 B
export interface ArrayLengthOptions { min?: number; minOrEqual?: number; max?: number; maxOrEqual?: number; } export declare function arrayLength(value: any, options?: ArrayLengthOptions): boolean;