UNPKG

validatable

Version:

A library for synchronous and asynchronous input validation.

9 lines (8 loc) 237 B
export interface StringLengthOptions { bytes?: boolean; min?: number; minOrEqual?: number; max?: number; maxOrEqual?: number; } export declare function stringLength(value: any, recipe?: StringLengthOptions): boolean;