| 31 | * Figma text node representation including plain characters. |
| 32 | */ |
| 33 | export interface TextNode extends DesignNodeBase { |
| 34 | /** Identifies the node as a text node. */ |
| 35 | type: 'TEXT' |
| 36 | |
| 37 | /** Raw text characters contained in the node. */ |
| 38 | characters: string |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * Shared structure for nodes that support children. |
nothing calls this directly
no outgoing calls
no test coverage detected