12 lines
362 B
TypeScript
12 lines
362 B
TypeScript
import type { Input } from '@any-touch/shared';
|
|
/**
|
|
*
|
|
* @param input 输入
|
|
* @returns 记录多点输入时的"起/上一个/终"向量
|
|
*/
|
|
export default function (): (input: Input) => {
|
|
startVecotr: import("@any-touch/shared").Point;
|
|
prevVecotr: import("@any-touch/shared").Point;
|
|
activeVecotr: import("@any-touch/shared").Point;
|
|
};
|