feat(server): add endpoint to list code note themes

This commit is contained in:
Elian Doran
2025-05-11 20:40:22 +03:00
parent 7475e94c53
commit ca467fcd7a
6 changed files with 20 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ import byMimeType from "./syntax_highlighting.js";
import smartIndentWithTab from "./extensions/custom_tab.js";
import type { ThemeDefinition } from "./color_themes.js";
export * from "./color_themes.js";
export { default as ColorThemes, type ThemeDefinition } from "./color_themes.js";
type ContentChangedListener = () => void;