We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
最小复现:
const validate = Schema.intersect([ Schema.object({ a: Schema.boolean().default(true) }), Schema.union([ Schema.object({ b: Schema.const(true) }), Schema.object({ b: Schema.const(false) }), ]), ]) validate({ a: null }) // { a: null }
The text was updated successfully, but these errors were encountered:
3531b51
fix: fix another edge case for #45
35f5eef
No branches or pull requests
最小复现:
The text was updated successfully, but these errors were encountered: