UNPKG

@mmstack/form-validation

Version:

This is an internal library for providing localized validators :)

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