UNPKG

robust-validator

Version:

Rule-based data validation library

15 lines (14 loc) 337 B
/** * 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;