Repository URL to install this package:
|
Version:
3.0.6-working.1 ▾
|
declare function isValidLength(value: number | string, minLength?: number, maxLength?: number): boolean;
declare type ValidValue = number | string | Array<any> | Object;
declare function isValidLengthCurried(minLength?: number, maxLength?: number): (value: ValidValue) => any;
export { isValidLength, isValidLengthCurried };
export default isValidLength;