UNPKG

take-shot

Version:
9 lines (8 loc) 229 B
import { IPath, PathType } from './path'; export declare class Vector implements IPath { type: PathType; x: number; y: number; constructor(x: number, y: number); add(deltaX: number, deltaY: number): Vector; }