endset_three_editor 0.7.9 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,8 @@
1
+ /**
2
+ * 共享状态模块
3
+ * 打破 index.ts ↔ addHandle.ts 的循环依赖
4
+ *
5
+ * index.ts 不导入此模块,addHandle.ts 通过此模块间接访问 index.ts 中的函数。
6
+ * 由于 index.ts 不导入 sharedState.ts 也不静态导入 addHandle.ts,不存在循环依赖。
7
+ */
8
+ export { addModel, setLoading, getSelectedObject, registerModelDataPanel, } from './index';