diff options
Diffstat (limited to 'src/features/views/index.ts')
| -rw-r--r-- | src/features/views/index.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/features/views/index.ts b/src/features/views/index.ts new file mode 100644 index 0000000..164241d --- /dev/null +++ b/src/features/views/index.ts @@ -0,0 +1,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; |
