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:
parent
567b0b5611
commit
0ea57f15d9
1 changed files with 4 additions and 4 deletions
8
libs/plugin-types/index.d.ts
vendored
8
libs/plugin-types/index.d.ts
vendored
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue