From 0ea57f15d9e2547f0909d26183d619158558b7ea Mon Sep 17 00:00:00 2001 From: Juanfran Date: Wed, 14 Aug 2024 11:56:27 +0200 Subject: [PATCH] fix(plugin-types): optional path curves --- libs/plugin-types/index.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/plugin-types/index.d.ts b/libs/plugin-types/index.d.ts index de7194f..c440c96 100644 --- a/libs/plugin-types/index.d.ts +++ b/libs/plugin-types/index.d.ts @@ -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.