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    
ui-component-library / dist / typings / src / forms / deps / isValidLength.d.ts
Size: Mime:
/**
 * @param {Number | string} value
 * @param {Number} [minLength=DEFAULT_MIN]
 * @param {Number} [maxLength=DEFAULT_MAX]
 * @return {Boolean}
 */
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;