logitar-validation
Version:
JavaScript validation library distributed by Logitar.
10 lines (9 loc) • 348 B
TypeScript
import type { ValidationRule } from "../types";
/**
* A validation rule that checks if a value is greater than or equal to a minimum value.
* @param value The value to validate.
* @param args The minimum value.
* @returns The result of the validation rule execution.
*/
declare const minimumValue: ValidationRule;
export default minimumValue;