UNPKG

@codeparticle/formal

Version:

A <2kb library for validating data of any kind

10 lines (7 loc) 242 B
import { ValidationRule } from '../types/index.js'; /** * Rule to validate a number that must be less than some amount. * @param {Number} max - Maximum value. */ declare const lessThan: (max: any) => ValidationRule; export { lessThan };