summaryrefslogtreecommitdiffhomepage
path: root/src/features/views/index.ts
blob: 164241dce6cf9b4ab33c1df141009e2a468a16a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export {
  addPanel,
  initialPanels,
  type PanelsState,
  removePanel,
  selectKind,
  type ViewPanel,
} from "./logic/panels";
export { default as ViewSidebar } from "./ui/ViewSidebar.svelte";

/** Public module manifest — aggregated by the shell's "Loaded Modules" view. */
export const manifest = {
  name: "views",
  description: "Sidebar view panels (dropdown picker + add / remove)",
} as const;