7995dc301a47949a98ac4495551ad28993933f904af2f3abe53e3ad4708cce7e87a6645c472122343c4147e79eeaf99e8d63bd1d88cd58d1489b9a1bcb3854 491 B

1234567891011121314
  1. import { ExecuteRule } from '../interface';
  2. /**
  3. * Rule for validating whitespace.
  4. *
  5. * @param rule The validation rule.
  6. * @param value The value of the field on the source object.
  7. * @param source The source object being validated.
  8. * @param errors An array of errors that this rule may add
  9. * validation errors to.
  10. * @param options The validation options.
  11. * @param options.messages The validation messages.
  12. */
  13. declare const whitespace: ExecuteRule;
  14. export default whitespace;