summaryrefslogtreecommitdiffhomepage
path: root/src/features/cwd-lsp/index.ts
blob: 36ea1b2d0513e322a70fb372f0216ec3fb289ad6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;