| 82 | } |
| 83 | |
| 84 | export interface VectorNode extends DesignNodeBase { |
| 85 | /** Identifies the node as a vector. */ |
| 86 | type: 'VECTOR' |
| 87 | |
| 88 | /** Fill styles applied to the vector. */ |
| 89 | fills: Fill[] |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Instance node with optional reference to its master component. |
nothing calls this directly
no outgoing calls
no test coverage detected