fix(coding-agent): export Theme and ThemeColor for hooks to use proper types

This commit is contained in:
Mario Zechner 2026-01-03 00:12:05 +01:00
parent 65d3081d80
commit 8c227052d3
2 changed files with 6 additions and 7 deletions

View file

@ -157,5 +157,5 @@ export {
export { main } from "./main.js";
// UI components for hooks
export { BorderedLoader } from "./modes/interactive/components/bordered-loader.js";
// Theme utilities for custom tools
export { getMarkdownTheme } from "./modes/interactive/theme/theme.js";
// Theme utilities for custom tools and hooks
export { getMarkdownTheme, Theme, type ThemeColor } from "./modes/interactive/theme/theme.js";