0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-01-06 14:50:21 -05:00

fix(plugin-types): optional path curves

This commit is contained in:
Juanfran 2024-08-14 11:56:27 +02:00
parent 567b0b5611
commit 0ea57f15d9

View file

@ -1152,22 +1152,22 @@ interface PenpotPathCommand {
/**
* The x-coordinate of the first control point for curves.
*/
c1x: number;
c1x?: number;
/**
* The y-coordinate of the first control point for curves.
*/
c1y: number;
c1y?: number;
/**
* The x-coordinate of the second control point for curves.
*/
c2x: number;
c2x?: number;
/**
* The y-coordinate of the second control point for curves.
*/
c2y: number;
c2y?: number;
/**
* The radius of the ellipse's x-axis.