Skip to main content
Question

Section nodes don't expose boundVariables, resolvedVariableModes, etc

  • September 25, 2023
  • 0 replies
  • 333 views

Eli_Crow

It seems variable properties are undefined on SectionNodes, despite being documented and available in the typescript typings.

for (const node of figma.currentPage.selection) {
  if (node.type === "SECTION") {
    console.log(node.boundVariables, node.resolvedVariableModes, node.explicitVariableModes);
  }
}
This topic has been closed for replies.