import type { SrcTgtPointsData } from "./SrcTgtPointsData"; import type { TouchData } from "./TouchData"; export interface MultiTouchData { readonly touches: ReadonlyArray>; velocity(direction: "all" | "horiz" | "vert"): number; }