robust-validator
Version:
Rule-based data validation library
15 lines (14 loc) • 337 B
TypeScript
/**
* The field under validation must be entirely alphabetic characters.
*
* @example
* import { alpha } from "robust-validator"
*
* const definition = {
* value: [alpha()]
* };
* @type {string}
* @tutorial https://validator.axe-api.com/rules.html#alpha
*/
declare const _default: () => string;
export default _default;