Files
bim_engine/src/index.ts

10 lines
315 B
TypeScript
Raw Normal View History

import { BimEngine } from './bim-engine';
// 导出 OptBtnGroups 组件,用于工具栏操作
export { OptBtnGroups } from './toolbar';
// 导出相关类型定义
export type { OptButton, ButtonGroup, OptBtnGroupsOptions, ClickPayload } from './toolbar/index.type';
// 导出主引擎类
export { BimEngine };