UNPKG

html2canvas

Version:
10 lines (9 loc) 298 B
import { IPath, Path, 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; } export declare const isVector: (path: Path) => path is Vector;