summaryrefslogtreecommitdiffhomepage
path: root/src/features/cwd-lsp/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/cwd-lsp/index.ts')
-rw-r--r--src/features/cwd-lsp/index.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/features/cwd-lsp/index.ts b/src/features/cwd-lsp/index.ts
new file mode 100644
index 0000000..36ea1b2
--- /dev/null
+++ b/src/features/cwd-lsp/index.ts
@@ -0,0 +1,14 @@
+export type {
+ CwdSaveResult,
+ LoadLspStatus,
+ LspStatusResult,
+ SaveCwd,
+} from "./logic/view-model";
+export { default as CwdField } from "./ui/CwdField.svelte";
+export { default as LspStatusView } from "./ui/LspStatusView.svelte";
+
+/** Public module manifest — aggregated by the shell's "Loaded Modules" view. */
+export const manifest = {
+ name: "cwd-lsp",
+ description: "Per-conversation working directory + language-server status",
+} as const;