Match `.in` with loose type
In docs there is example
Its work good because match know how rest of the type will look like, so we have acess to oneValue or twoValue
But when i change it to:
Typescript say that only id exist
Is this an issue, or intentional?
Probably second one, because i need to make to get anything else then never from typescript
Then what should I use as alternative?
2 Replies
Hey thanks for writing this up. While generally it is helpful to match against a discriminated union like the on in your original example, the current behavior of this example is definitely an inference bug in ArkType.
We're making some other improvements to matching for 2.2 , would you be willing to create a GitHub issue for this so we can track it?
Created an issue here:
https://github.com/arktypeio/arktype/issues/1373
GitHub
match
.at
with collaposed union at prop does not work · Issue #13...This is a confirmed issue copied from a Discord question. In docs there is example: type Data = | { id: 1 oneValue: number } | { id: 2 twoValue: string }; const discriminateValue = type.match // .i...