UNPKG

svg-path-d

Version:

SVG path data (path[d] attribute content) manipulation library.

8 lines (7 loc) 218 B
import { DrawCommand } from './command'; export declare type DrawToken = { name: DrawCommand; args: string[]; relative?: boolean; }; export declare function getTokens(pathData: string): DrawToken[];