Interface IValidatorFactory

Factory for generating Validator. Most apps will use the standard Validator class. This interface targets unit testing with mocks.

interface IValidatorFactory {
    create(valueHost, config): IValidator;
    canCreate(config): boolean;
}

Implemented by

Methods

Generated using TypeDoc v0.25.12