From d320e693267bdcd3c3c8bd7e6c2d79a2d20b6960 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Wed, 17 Jun 2026 11:30:34 +0800 Subject: [PATCH] refactor(commands): trim health type reexports --- src/commands/health.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/commands/health.ts b/src/commands/health.ts index 5d55bc70356..f906c89721e 100644 --- a/src/commands/health.ts +++ b/src/commands/health.ts @@ -60,12 +60,7 @@ import type { } from "./health.types.js"; import { logGatewayConnectionDetails } from "./status.gateway-connection.js"; export { formatHealthChannelLines } from "./health-format.js"; -export type { - AgentHealthSummary, - ChannelAccountHealthSummary, - ChannelHealthSummary, - HealthSummary, -} from "./health.types.js"; +export type { HealthSummary } from "./health.types.js"; const DEFAULT_TIMEOUT_MS = 10_000;