/** * Client type exports for RPC usage * * Use this in your frontend or tests for type-safe API calls: * * @example * ```ts * import { hc } from 'hono/client' * import type { AppType } from './client' * * const client = hc('http://localhost:8080') * * // Now you get full type safety: * const res = await client.api.v1.users.me.$get() * const data = await res.json() // fully typed! * ``` */ import { Hono } from "hono"; import type { ApiRoutes } from "./routers/index.js"; import type { getPublicRouter } from "./routers/public.js"; /** * Main application type for RPC client * Combines all routes for type-safe client usage */ export type AppType = Hono<{ Variables: Record; }> & { "/api/v1": ApiRoutes; "/api/public": ReturnType; }; /** * Re-export the base API routes type */ export type { ApiRoutes };