| 77 | * Fill style as either a literal color or a variable. |
| 78 | */ |
| 79 | export interface Fill { |
| 80 | /** Hex color string or variable reference describing the fill color. */ |
| 81 | color: string | Variable |
| 82 | } |
| 83 | |
| 84 | export interface VectorNode extends DesignNodeBase { |
| 85 | /** Identifies the node as a vector. */ |
nothing calls this directly
no outgoing calls
no test coverage detected