index-hono.d.ts 436 B

12345678910
  1. /**
  2. * Hono-specific API entrypoint.
  3. *
  4. * This is intentionally published as a dedicated subpath (`http-proxy-middleware/hono`)
  5. * so the root package types do not import `hono` / `@hono/node-server`.
  6. *
  7. * Keeping these exports out of the root entrypoint prevents non-Hono consumers from
  8. * getting TypeScript module-resolution errors for optional Hono dependencies.
  9. */
  10. export { createHonoProxyMiddleware } from './factory-hono.js';