UNPKG

motion-and-tween

Version:
10 lines (9 loc) 230 B
import { Vector } from "es-vector-math"; export declare class Position { private x; private y; constructor(x: number, y: number); toString(): string; addVector(vector: Vector): void; } export default Position;