* Onyl support to update several properties
(data: Partial<IPanelItem>)
| 212 | * Onyl support to update several properties |
| 213 | */ |
| 214 | public updateOutput(data: Partial<IPanelItem>): IPanelItem | undefined { |
| 215 | const { title, name, sortIndex, active, closable, editable } = data; |
| 216 | return this.updateOutputProperty({ |
| 217 | title, |
| 218 | name, |
| 219 | sortIndex, |
| 220 | active, |
| 221 | closable, |
| 222 | editable, |
| 223 | }); |
| 224 | } |
| 225 | |
| 226 | public appendOutput(content: string): void { |
| 227 | const outputValue = this.getOutputValue(); |
nothing calls this directly
no test coverage detected