From 2ec9192010c3437a61556c320382e4b4cf2f058c Mon Sep 17 00:00:00 2001 From: Joao Lisboa Date: Tue, 2 Dec 2025 13:20:58 -0300 Subject: [PATCH] fix: use export type for type-only re-exports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes build error with isolatedModules. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/agents/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agents/index.ts b/src/agents/index.ts index e2b5a35e9..9e475cf59 100644 --- a/src/agents/index.ts +++ b/src/agents/index.ts @@ -17,4 +17,4 @@ export function getAgentSpec(kind: AgentKind): AgentSpec { return specs[kind]; } -export { AgentKind, AgentMeta, AgentParseResult } from "./types.js"; +export type { AgentKind, AgentMeta, AgentParseResult } from "./types.js";