Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/forms / build / dist / validators / isValidLength.d.ts
Size: Mime:
declare function isValidLength(value: number | string, minLength?: number, maxLength?: number): boolean;
declare type ValidValue = number | string | any[] | {
    [key: string]: any;
};
declare function isValidLengthCurried(minLength?: number, maxLength?: number): (value: ValidValue) => boolean;
export { isValidLength, isValidLengthCurried };
export default isValidLength;