Skip to content

Commit

Permalink
fix(plugin-types): optional path curves
Browse files Browse the repository at this point in the history
  • Loading branch information
juanfran committed Aug 14, 2024
1 parent 567b0b5 commit 0ea57f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libs/plugin-types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 0ea57f1

Please sign in to comment.