This commit is contained in:
ch197511161
2025-12-11 01:29:41 +08:00
parent 908b4361ed
commit ddce8fce18
473 changed files with 267270 additions and 0 deletions

View 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'