Yusuke Wada

Results 1706 comments of Yusuke Wada

@andreataglia No. Please use `Union`: ```ts export type ApiType = typeof helloRoute | typeof greetRoute; ```

> Have any plan which can generate route type(or other app's meta) for client(or plugin) in build time? We currently don't have a plan for this, but if you know...

I am not ignoring the issue because I don't see a good solution. If anyone knows of a better way, please let me know.

Hi @yudai-nkt This should be fixed. I think it is because the return value of `get` is specified as `Hono` as follows. I can't think of a solution right now,...

Hmmmm. Fixing this issue is super difficult or imposible. To achieve this, we must be able to "*infer the type of a subclass in the parent class `Hono` and pass...

Yeah. Actually, before creating "Zod OpenAPI", I had not really thought about extending Hono to make a sub class. For Hono's flexible type inference, the return type of each method...

@NicoPlyley Thanks for explaining! I understood it well! So, I hope we can solve real world problems. @yudai-nkt @ZerNico Is there any specific problem with the subclass type being `Hono`?...

@yudai-nkt Thanks for your response. Okay, If we can work around it, let's do it. PS. You can write `jsonT({})` to avod the error. This is because `null` does not...

As mentioned above, it is impossible not to treat the `Hono`'s subclass as `Hono`. Closing this issue. Thanks!

Hi @bkyerv > According to the README file, there should be a message indicating that the app is listening on port 3000. However, the only output I receive is the...