(desc: string)
| 149 | } |
| 150 | |
| 151 | setDesc(desc: string): this { |
| 152 | this.descEl.textContent = desc; |
| 153 | this.infoEl.appendChild(this.descEl); |
| 154 | return this; |
| 155 | } |
| 156 | |
| 157 | addButton(cb: (component: ButtonComponent) => void): this { |
| 158 | cb(new ButtonComponent(this.controlEl)); |
no outgoing calls
no test coverage detected