flatMorph in a type
I'm trying to use flatMorph to generate dynamic template literal keys for a type but it's becoming unknown.
The types are:
Why is
a
not preserving the type?8 Replies
Surely the
'string'
has to be const too?
Have you tried that?
I also seem to remember template literals not being supported, although not certain of that
What type were you expecting?Thanks but that doesn't change anything. I want to have keys of an object match the template literal and be able to assert their values' types
type
is not meant to parse non-literal definitions, e.g. in this case having an object with test_${number}
as an index signature. It's not really clear how this should even be inferred as a Type since it's not the same as if you had an index signature with a regex like /test_d+/
(which you'd have to cast but at least it would tell you exactly what data would be valid).
It works if you specify the input array in a way TS can infer:
Lovely! Makes sense! Can't have an unbounded range (ie, template string literal) of indexes. But then I'm not sure how regex would work, still have to learn more.
It can with the regex literal approach, but you wouldn't be inferring it from an array at that point since it would need to be infinite
Something like this:
wow! 🤯
I'm wondering how this would be compatible with when you have a lot of other properties in the same object you want to validate. Since the
"+": "reject"
one would invalidate all others if you merge this type with another object type, and the cast erases all the other keys unless you explicitly mention each of them again in the cast generic, doesn't seem practical.
Actually now I'm thinking you define the other one first, and then you can union the types in the generic of this one:
.merge
does a property-wise merge that inherits the undeclared
behavior of the merged type:
So just make sure whatever you merge last is where you specify reject (or in both places)
You're right that an intersection would fail because that would require both types be satisfied which is impossible if they have mutually exclusive props
Merge is usually better for combining objects anyways