-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
31 lines (25 loc) · 1.06 KB
/
index.ts
File metadata and controls
31 lines (25 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
* @module Effect/Sidebar
* @description
* Main re-export module for Sidebar service.
* Provides all exports for backward compatibility with existing imports.
*
* @see {@link Effect/Sidebar/Interface/SidebarService} Service interface
* @see {@link Effect/Sidebar/Layer/SidebarLive} Live layer
* @see {@link Effect/Sidebar/Layer/SidebarMock} Mock layer
* @category Re-export
*/
// Types
export type { SidebarPanel, CreateSidebarPanel } from "./Type/SidebarType.js";
// Service interface
export type { SidebarService } from "./Interface/SidebarService.js";
// Tag
export { default as SidebarTag, Sidebar } from "./Tag/SidebarTag.js";
// Layers
export { default as SidebarLive } from "./Layer/SidebarLive.js";
export { default as SidebarMockLive } from "./Layer/SidebarMock.js";
// Mock factory (for direct usage without Layer)
export { makeMockSidebar } from "./Layer/SidebarMock.js";
// Errors
export { default as SidebarPanelNotFoundError } from "./Error/SidebarPanelNotFoundError.js";
export { default as SidebarUpdateError } from "./Error/SidebarUpdateError.js";