/** * Live health + uptime + per-adapter sync state. Reads straight from * the in-process HeartbeatWriter so the dashboard sees up-to-the-second * numbers — the on-disk file only flushes every 60s. * * - GET /api/status */ import type { IncomingMessage, ServerResponse } from "node:http"; import type { RouteContext } from "../route-context.js"; export declare function handle(req: IncomingMessage, res: ServerResponse, ctx: RouteContext): Promise; //# sourceMappingURL=status.d.ts.map