Inferring generic types
Hi, I'm new to ArkType and have little knowledge about TypeScript generic.
I wish I had something like below:
Currently I've manually define the type to match the schema.
What am I missing, or is there any workaround?
Thanks in advance.
18 Replies
RTFM HKT Generics
https://arktype.io/docs/generics#hkt
Its advanced TS stuff so if you have any more questions you are welcome to ask
ArkType Docs
TypeScript's 1:1 validator, optimized from editor to runtime
Hmm wait you need the types
Lemme think
So this isn't so hard if your input to
BoxOf<t>
is an arktype input itself:
but if you want BoxOf<123>
to return Type<{ box: 123 }, {}
or { box: 123 }
this is trickier
This works:
If you want the basic type (i.e. not wrapped in Type
) then this'd be the way:
@guersamIt's exactly what I want. Thank you very much!
Is there any change to put this trick into
Generic
's interface to match type(...).infer
?You could declaration merge it in yourself
But maybe @ssalbdivad would be amenable to a PR to add it to core. The design I would recommend would be
Generic<...>.instantiate<T>
.
e.g. use as typeof boxOf.instantiate<123>
It must be fun to learn some TS generics at this chance, thanks!
At first I thought it should be
.infer
, but your recommendation sounds better as TS doesn't seem to have support for point free HKT.I mean the latter.
Yeah the deeper problem in this case is that
(typeof boxOf)["instantiate"]
means a fundamentally different thing than typeof boxOf.instantiate
(typeof boxOf)["instantiate"]
means "get the instantiate property of typeof boxOf
(Generic
)"
typeof boxOf.instantiate
means "get the typeof boxOf.instantiate
"
you can't write (typeof boxOf)["instantiate"]<...>
because you're working with a type
you can write typeof boxOf.instantiate<...>
because the parens actually look like typeof (boxOf.instantiate<...>)
point-free HKTs would help in a way but then you'd have to overload the meaning of .infer
which tbf is perhaps viableThanks for the explanation. I'm still struggling and decided to stick to your first solution for now.
And I just realized the exact name
t
matterswell it matters because that's the name of the param
I misunderstood. It emitted type error when I changed
<t>
with something else, but that was irrelevant. Arbitrary names workah I thought you meant
<T>
elsewhere; like ["t"]
or such
Anyways ReturnType<typeof boxOf.instantiate<t>>
is admittedly a bit ugly
and it'd probably be what'd be necessaryOh yes,
["t"]
mattersso maybe a
type.blah<generic, args>
would be better
I say blah
because instantiate
is already taken
(though I guess it could be retrofitted here)ReturnType
works, thanks!
TS generic seems like just another language 😅 The definition of ReturnType
is interestingType level TS may as well be another language
It is a language enough to run Doom in it