Adds logic to a field to determine if the field or any of its child fields has validation errors.
API
function validateTree<TValue, TPathKind extends PathKind = PathKind.Root>( path: SchemaPath<TValue, 1, TPathKind>, logic: NoInfer<TreeValidator<TValue, TPathKind>>,): void;validateTree
voidAdds logic to a field to determine if the field or any of its child fields has validation errors.
@paramlogic
NoInfer<TreeValidator<TValue, TPathKind>>A TreeValidator that returns the current validation errors.
Errors returned by the validator may specify a target field to indicate an error on a child field.
@returns
voidJump to details