@figma/plugin-typings
Advanced tools
Comparing version 1.69.0 to 1.70.0
{ | ||
"name": "@figma/plugin-typings", | ||
"version": "1.69.0", | ||
"version": "1.70.0", | ||
"description": "Typings for the Figma Plugin API", | ||
@@ -5,0 +5,0 @@ "main": "", |
@@ -1128,4 +1128,8 @@ /* plugin-typings are auto-generated. Do not update them directly. See plugin-docs/ for instructions. */ | ||
setBoundVariable(field: VariableBindableNodeField, variableId: string): void | ||
resolvedVariableModes: Record<string, string> | ||
explicitVariableModes: Record<string, string> | ||
resolvedVariableModes: { | ||
[collectionId: string]: string | ||
} | ||
explicitVariableModes: { | ||
[collectionId: string]: string | ||
} | ||
clearExplicitVariableModeForCollection(collectionId: string): void | ||
@@ -1604,2 +1608,3 @@ setExplicitVariableModeForCollection(collectionId: string, modeId: string): void | ||
authorName: string | ||
isWideWidth: boolean | ||
clone(): StickyNode | ||
@@ -1746,3 +1751,5 @@ } | ||
setValueForMode(modeId: string, newValue: VariableValue): void | ||
readonly valuesByMode: Record<string, VariableValue> | ||
readonly valuesByMode: { | ||
[modeId: string]: VariableValue | ||
} | ||
remove(): void | ||
@@ -1749,0 +1756,0 @@ scopes: Array<VariableScope> |
63714
2002