10 lines
241 B
TypeScript
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;
|
|
};
|