mirror of
https://github.com/LukeHagar/arbiter.git
synced 2025-12-06 04:19:14 +00:00
4 lines
210 B
TypeScript
4 lines
210 B
TypeScript
import type { Context, Next } from 'hono';
|
|
import type { OpenAPIStore } from '../store/openApiStore.js';
|
|
export declare function apiDocGenerator(store: OpenAPIStore): (c: Context, next: Next) => Promise<void>;
|