2025-07-14 10:54:06 +08:00

10 lines
241 B
TypeScript

import type { Input, Computed } from '@any-touch/shared';
/**
* 计算角度
* @param input 输入
*/
export default function ComputeAngle(): (input: Input, computed: Computed) => {
angle: number;
deltaAngle: number;
};