UNPKG

@mmstack/form-validation

Version:

This is an internal library for providing localized validators :)

4 lines (3 loc) 253 B
import { Validator } from '../validator.type'; export declare function defaultMaxLengthMessageFactory(max: number): string; export declare function createMaxLengthValidator(createMsg: (max: number) => string): (max: number) => Validator<string | null>;