UNPKG

doc-it-up

Version:

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

6 lines (5 loc) 230 B
import { Context, Next } from 'koa'; export declare const koaMiddleware: (options?: { docsDir?: string; }) => (ctx: Context, next: Next) => Promise<any>; export declare const koaHandler: () => (ctx: Context) => Promise<void>;