Interface InjectableValidator

interface InjectableValidator {
    asyncValidate?: AsyncValidatorFn;
    validate?: ValidatorFn;
}

Properties

asyncValidate?: AsyncValidatorFn
validate?: ValidatorFn