UNPKG

apitally

Version:

Simple API monitoring & analytics for REST APIs built with Express, Fastify, Hono, H3, Koa, and NestJS.

15 lines (12 loc) 520 B
import { Hono } from 'hono'; import { StartupData, PathInfo, ValidationError } from '../common/types.js'; import '../common/logging.js'; import 'winston'; import '../common/requestLogger.js'; import 'buffer'; import 'http'; import '../common/tempGzipFile.js'; declare function getAppInfo(app: Hono, appVersion?: string): StartupData; declare function listEndpoints(app: Hono): PathInfo[]; declare function extractZodErrors(responseJson: any): ValidationError[]; export { extractZodErrors, getAppInfo, listEndpoints };