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
I want to be able to validate that a value is one of several specific values and then get a union type returned
e.g.
ow.string.oneOf(["on", "off"] as const)
The type would be StringPredicate<"on" | "off"> rather than simply StringPredicate or some subclass of Predicate<T>.
StringPredicate<"on" | "off">
StringPredicate
Predicate<T>
A different solution that might work would be to use ow.any(…) so that union types can be defined for more than just strings:
ow.any(…)
ow.any(ow.const("on" as const), ow.const("off" as const))
The text was updated successfully, but these errors were encountered:
I think both would be useful, but I haven't looked into whether it's possible.
Sorry, something went wrong.
No branches or pull requests
I want to be able to validate that a value is one of several specific values and then get a union type returned
e.g.
The type would be
StringPredicate<"on" | "off">
rather than simplyStringPredicate
or some subclass ofPredicate<T>
.A different solution that might work would be to use
ow.any(…)
so that union types can be defined for more than just strings:The text was updated successfully, but these errors were encountered: