Files
nothoughts/node_modules/pixi.js/lib/scene/graphics/shared/svg/parse-svg-path.d.ts
2025-08-04 18:57:35 +02:00

6 lines
145 B
TypeScript

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