JSONSchemaBridge
validator return type
#1158
Labels
Area: Bridge
Affects some of the bridge packages
Bridge: JSON Schema
Affects the uniforms-bridge-json-schema package
Type: Bug
Bug reports and their fixes
Milestone
Affected versions
3.10.0
Description
In
JSONSchemaBridge(schema, validator)
thevalidator
function return type isany
but theBridge
specifies more concrete type (null | Error | Promise<null | Error>
) that can be later returned by thegetValidator
.Suggestion
Replace
any
withnull | Error | Promise<null | Error>
.The text was updated successfully, but these errors were encountered: