Route types for client
I found an example that gives the
hc client route types but how would that look like if I had more routes?hcconst app = new Hono();
const routes = app.get("/api/clock", (c) => {
return c.json({
time: new Date().toLocaleTimeString(),
});
});
export type AppType = typeof routes;