* Common fields available on every design node we expose.
| 12 | * Common fields available on every design node we expose. |
| 13 | */ |
| 14 | interface DesignNodeBase { |
| 15 | /** Human-friendly node name shown in Figma. */ |
| 16 | name: string |
| 17 | |
| 18 | /** Discriminant describing the concrete node type. */ |
| 19 | type: SupportedDesignNodeType |
| 20 | |
| 21 | /** Whether the node is visible in the current document. */ |
| 22 | visible: boolean |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * Union of every design node variant exposed to plugins. |
nothing calls this directly
no outgoing calls
no test coverage detected