fix: use export type for type-only re-exports

Fixes build error with isolatedModules.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Joao Lisboa
2025-12-02 13:20:58 -03:00
committed by Peter Steinberger
parent 202eff984d
commit 2ec9192010

View File

@@ -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";