Inference issues while trying to be generic over a type
I am trying to create a form state helper function that takes a schema and an initial value. I am not getting any ts errors but the type of
form
infers to "anyOrNever" & Record<string, unknown>
this is the relevant function
this is example usage with the inference issue
would appreciate any help 🙂14 Replies
Are you using 2.1+? Some inference changes might help here.
Would also recommend using
type.Any
as your base type instead of just type
(or type.Any<T>
)using just
type.Any
fixes it but now it's inferred as any
which is not helpful
and using type.Any<T> gives the following error
In what context?
basically createStore expects
object | undefined
the exclude comes from throwOnParseError
removing the throw wrapper
So your problem is within the implementation itself
Just use an overload TS cannot infer generic parameters well within a function like this
The point for something like this is that the signature is safe and inferred correctly, the implementation of that generic itself TS does a terrible job with
You almost always have to cast any non-trivial generic function implementation
can I cast to
TSchema['infer']
is that what you mean?
or T directlyYeah cast to what the correct external result is or just cast to
never
or something so it allows however you type the signature
Whenever you implement generics like that in TS you don't get safety within the implementation but you get safety and precision externally that's the important partgot it, thanks
Another way to do it is overloads like this:
https://discord.com/channels/957797212103016458/1289555141355241573/1290384921772167168
But it's just another form of casting
thanks I'll look into it
this worked in the end, greatly appreciate the help was stuck for hours on this
is there a way to make sure somebody can only pass a schema that is object like
basically
Record<string, unknown>
I usually tend to prefer
object
over Record<string, unknown>
unless I really am just trying to allow index access on a value.
You should be able to use extends type.Any<object>
ideallyThanks again