DangerZone
Explore posts from serversHow can I generate trpc Generic Types?
@Nick Lucas Yes, I am building an implementation for trpc in nestjs, a full opinionated one, for example here is how you'll define a route:
I have managed to get it all to work, but it is littered with
any
types since trpc doesn't really give us actual types, for example, if I want the Router()
decorator to be able to accept meta
, I don't really have a way to type it since its typed dynamically.
Here is an example of how I generate the routers:
as you can see, it is really difficult to actually use types here, and I am forced to use any
for most of the parts in this function, I would love to just pass t
and use it throughout the function but t
doesn't really lends itself with a generic type that I can actually use.
And yes, I know I will lose the compile time benefits of trpc, but as you can see by my answer here: https://github.com/macstr1k3r/trpc-nestjs-adapter/issues/1#issuecomment-1483129949
The best solution for integrating trpc with nestjs is taking the @nestjs/graphql
approach and generating the schema in build-time.4 replies