Binds a validator to the given path that requires the value to match the standard email format. This function can only be called on string paths.
API
function email<TPathKind extends PathKind = PathKind.Root>(
path: { [ɵɵTYPE]: [string, TPathKind] },
config?: BaseValidatorConfig<string, TPathKind> | undefined,
): void;voidBinds a validator to the given path that requires the value to match the standard email format. This function can only be called on string paths.
@parampath
{ [ɵɵTYPE]: [string, TPathKind]; }Path of the field to validate
@paramconfig
BaseValidatorConfig<string, TPathKind> | undefinedOptional, allows providing any of the following options:
error: Custom validation error(s) to be used instead of the defaultValidationError.email()or a function that receives theFieldContextand returns custom validation error(s).
@returns
voidJump to details