6 lines
145 B
TypeScript
6 lines
145 B
TypeScript
declare module 'parse-svg-path'
|
|
{
|
|
export type Command = [string, ...number[]];
|
|
export default function parse(path: string): Command[];
|
|
}
|