2025-12-03 15:46:18 +08:00
|
|
|
import { BimEngine } from './bim-engine';
|
2025-12-03 18:35:05 +08:00
|
|
|
|
2025-12-04 15:24:44 +08:00
|
|
|
// 导出通用组件
|
|
|
|
|
export { BimButtonGroup } from './components/button-group';
|
|
|
|
|
export { Toolbar } from './components/button-group/toolbar';
|
2025-12-03 18:35:05 +08:00
|
|
|
|
|
|
|
|
// 导出相关类型定义
|
2025-12-04 15:24:44 +08:00
|
|
|
export type { OptButton, ButtonGroup, ButtonGroupOptions, ClickPayload } from './components/button-group/index.type';
|
2025-12-03 18:35:05 +08:00
|
|
|
|
2025-12-09 18:34:43 +08:00
|
|
|
// 导出 RightKey/Menu 组件
|
|
|
|
|
export type { MenuItemConfig } from './components/menu/item';
|
|
|
|
|
export { BimMenu } from './components/menu';
|
|
|
|
|
export { BimRightKey } from './components/right-key';
|
|
|
|
|
|
2025-12-03 18:35:05 +08:00
|
|
|
// 导出主引擎类
|
2025-12-04 18:39:07 +08:00
|
|
|
export { BimEngine };
|
|
|
|
|
|
|
|
|
|
// 导出 3D 引擎相关类型
|
|
|
|
|
export type { EngineOptions, ModelLoadOptions } from './components/engine';
|
|
|
|
|
|
2025-12-09 18:34:43 +08:00
|
|
|
export { createEngine } from './bim-engine-sdk.es.js';
|