createRoute Wrapper typing
This may not be entirely on topic, but perhaps someone has asked a similar question.
How to preserve typing?
I'm not that good at TypeScript, I understand that I need to use generics, I looked at the source code, but I still can't fully understand how to do this.
Example:
8 Replies
Not sure if it will completely fix it, but prefer to use “unknown” over “any”.
Unknown = could be anything, but it’s still some type
Any = opt out of types completely
Thanks for the advice! I set this type as temporary. In theory, I should substitute the type from the generic there. But I don't know how to implement it
i like to think of generics as functions for types
you pass in a type parameter, and you get back some resolved type
I also thought about some such option, but it still doesn’t work.
Hono loses the ability to infer type when I do this
I'm talking about the infer that is described here
https://hono.dev/docs/guides/best-practices
Best Practices - Hono
Web framework built on Web Standards for Cloudflare Workers, Fastly Compute, Deno, Bun, Vercel, Node.js, and others. Fast, but not only fast.
It has to do with the defaults on Hono<>, I think. You have to
ES =infer.ExtractSchema<Hono>
, EE = infer.ExtractEnv<Hono>
every time you have another layer of generic, because you need to pass down Hono<ES, EE, string>
the default Hono generic is Hono<BlankEnv, BlankSchema, ...>
I think I solved the problem by adding "const" before the types in the generics.
Thanks!
what do you mean by this?
it doesn't sound right