defineValidatorsYou can define custom validations using this function.Usage#defineValidators({ minLen: (value: any) => ({ valid: typeof value === "string" && value.length > 3, message: "Input should be more than 3 characters", }),});Copy