(content: string)
| 224 | } |
| 225 | |
| 226 | public appendOutput(content: string): void { |
| 227 | const outputValue = this.getOutputValue(); |
| 228 | this.updateOutputProperty({ |
| 229 | data: outputValue + content, |
| 230 | }); |
| 231 | this.outputEditorInstance?.setValue(outputValue + content); |
| 232 | } |
| 233 | |
| 234 | public cleanOutput(): void { |
| 235 | this.outputEditorInstance?.setValue(''); |
nothing calls this directly
no test coverage detected