* Shared structure for nodes that support children.
| 42 | * Shared structure for nodes that support children. |
| 43 | */ |
| 44 | interface ContainerNodeBase extends DesignNodeBase { |
| 45 | /** Ordered child nodes that reside within this container. */ |
| 46 | children: DesignNode[] |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Group node containing an ordered list of child nodes. |
nothing calls this directly
no outgoing calls
no test coverage detected