summaryrefslogtreecommitdiffhomepage
path: root/src/features/tabs/index.ts
blob: 699c8459b631a3a8853abcad7daf261c0ced88af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
export type { Tab, TabsState } from "./tabs";
export {
	activeTab,
	closeTab,
	createTab,
	deriveTitle,
	initialState,
	MIN_HANDLE_LENGTH,
	newDraft,
	selectTab,
	setModel,
	setTitle,
	shortHandle,
} from "./tabs";
export type { TabsStorage, TabsStore } from "./tabs-store.svelte";
export { createTabsStore } from "./tabs-store.svelte";
export { default as TabBar } from "./ui/TabBar.svelte";

/** Public module manifest — aggregated by the shell's "Loaded Modules" view. */
export const manifest = {
	name: "tabs",
	description: "Conversation tabs with title derivation and persistence",
} as const;