UNPKG

@zarlex/ngx-accessor

Version:

This library provides an adapter to interact with Angular forms. It also provides an adapter to work with object signals and forms

11 lines (10 loc) 273 B
import { ValidatorError } from '../validator-error'; export declare class MaxLengthValidationError extends ValidatorError<{ maxLength: number; currentLength: number; }> { constructor(params: { maxLength: number; currentLength: number; }); }