UNPKG

doc-it-up

Version:

Generates automatic documentation for your code. Supports Express, Fastify, Koa, Hono, Elysia, and Hapi.

6 lines (5 loc) 218 B
import { Context, Next } from 'hono'; export declare const honoMiddleware: (options?: { docsDir?: string; }) => (c: Context, next: Next) => Promise<void>; export declare const registerHonoDocs: (app: any) => void;