UNPKG

motion-and-tween

Version:
10 lines (9 loc) 247 B
export declare class Vector { readonly x: number; readonly y: number; constructor(x: number, y: number); toString(): string; add(vector: Vector): Vector; static add(v1: Vector, v2: Vector): Vector; } export default Vector;