svgcanvas/types/path2d.d.ts

11 lines
193 B
TypeScript
Raw Normal View History

2025-03-09 10:37:06 +02:00
export default class Path2D {
constructor(ctx: any, arg: any);
__pathString: any;
ctx: any;
__subPaths: any[];
__currentPosition: {
x: any;
y: any;
};
}