-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
35 lines (29 loc) · 1.02 KB
/
index.ts
File metadata and controls
35 lines (29 loc) · 1.02 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
32
33
34
35
/**
* @module Effect/Panel
* @description
* Main re-export module for Panel service.
* Provides all exports for backward compatibility with existing imports.
*
* @see {@link Effect/Panel/Interface/PanelService} Service interface
* @see {@link Effect/Panel/Layer/PanelLive} Live layer
* @see {@link Effect/Panel/Layer/PanelMock} Mock layer
* @category Re-export
*/
// Types
export type {
PanelView,
CreatePanelView,
PanelViewType,
} from "./Type/PanelType.js";
// Service interface
export type { PanelService } from "./Interface/PanelService.js";
// Tag
export { default as PanelTag, Panel } from "./Tag/PanelTag.js";
// Layers
export { default as PanelLive } from "./Layer/PanelLive.js";
export { default as PanelMockLive } from "./Layer/PanelMock.js";
// Mock factory (for direct usage without Layer)
export { makeMockPanel } from "./Layer/PanelMock.js";
// Errors
export { default as PanelViewNotFoundError } from "./Error/PanelViewNotFoundError.js";
export { default as PanelUpdateError } from "./Error/PanelUpdateError.js";