summaryrefslogtreecommitdiffhomepage
path: root/src/features/workspace/index.ts
blob: 9acf99412ef74e084942b04daca8c834f3c52bbc (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: "workspace",
	description: "Per-conversation working directory + language-server status",
} as const;