feat(core): 添加module.json和类型定义更新

This commit is contained in:
yhh
2025-12-03 16:20:59 +08:00
parent 37ab494e4a
commit 13cb670a16
25 changed files with 1107 additions and 198 deletions

View File

@@ -6,6 +6,7 @@
* - 碰撞检测算法
* - 动画插值和缓动函数
* - 数学工具函数
* - 颜色工具类
*/
// 核心数学类
@@ -18,6 +19,9 @@ export { Circle } from './Circle';
// 数学工具
export { MathUtils } from './MathUtils';
// 颜色工具
export { Color, type RGBA, type HSL } from './Color';
// 碰撞检测
export * from './Collision';