(type: string)
| 144 | } |
| 145 | |
| 146 | getFirstSubcomponent(type: string): Component | null { |
| 147 | const components = this.components.get(type); |
| 148 | return components && components.length > 0 ? components[0] : null; |
| 149 | } |
| 150 | |
| 151 | getAllSubcomponents(type: string): Component[] { |
| 152 | return this.components.get(type) || []; |