/** * Before you try to import Hono and use its types, * it's good to know that Hono's types are not compatible across * independently installed versions of Hono. */ /** * A simplified type representing a Hono application with a `routes` property */ export type HonoLikeApp = { routes: RouterRoute[]; }; type RouterRoute = { method: string; path: string; handler: Function; }; export {};