init5
This commit is contained in:
25
app/composables/powerStation/index.ts
Normal file
25
app/composables/powerStation/index.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
/**
|
||||
* PowerStation 模块入口
|
||||
* 统一导出所有组合式函数和类型定义
|
||||
*/
|
||||
|
||||
// 类型导出
|
||||
export type {
|
||||
BreadcrumbItem, HighlightConfig, InteractionCallbacks,
|
||||
// 交互系统类型
|
||||
InteractionState, LightingMode,
|
||||
// 模型管理系统类型
|
||||
ModelHierarchyNode, ModelModeContext, RaycasterConfig, RotateDirection,
|
||||
// 视图控制类型
|
||||
StandardViewType
|
||||
} from './types'
|
||||
|
||||
// 组合式函数导出
|
||||
export { useInteraction } from './useInteraction'
|
||||
export { useModelManager } from './useModelManager'
|
||||
export { useThreeScene } from './useThreeScene'
|
||||
|
||||
// 模式导出
|
||||
export { useFullMode } from './modes/useFullMode'
|
||||
export { useSimplifiedMode } from './modes/useSimplifiedMode'
|
||||
|
||||
Reference in New Issue
Block a user