From 5f5333b01ca46e010e89933ed65986304b1592e6 Mon Sep 17 00:00:00 2001 From: Michael Yong Date: Tue, 17 Sep 2024 08:35:40 -0700 Subject: [PATCH] update color stop to make boundVariable optional --- plugin-api-standalone.d.ts | 2 +- plugin-api.d.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin-api-standalone.d.ts b/plugin-api-standalone.d.ts index bf78775..576400f 100644 --- a/plugin-api-standalone.d.ts +++ b/plugin-api-standalone.d.ts @@ -1020,7 +1020,7 @@ interface Constraints { interface ColorStop { readonly position: number readonly color: RGBA - readonly boundVariables: { + readonly boundVariables?: { [field in VariableBindableColorStopField]?: VariableAlias } } diff --git a/plugin-api.d.ts b/plugin-api.d.ts index 9378389..a012f35 100644 --- a/plugin-api.d.ts +++ b/plugin-api.d.ts @@ -1016,7 +1016,7 @@ interface Constraints { interface ColorStop { readonly position: number readonly color: RGBA - readonly boundVariables: { + readonly boundVariables?: { [field in VariableBindableColorStopField]?: VariableAlias } }