(message: string, color?: ColorToken)
| 2140 | } |
| 2141 | |
| 2142 | showStatus(message: string, color?: ColorToken): void { |
| 2143 | this.state.transcriptContainer.addChild(new StatusMessageComponent(message, color)); |
| 2144 | this.state.ui.requestRender(); |
| 2145 | } |
| 2146 | |
| 2147 | showNotice(title: string, detail?: string): void { |
| 2148 | this.state.transcriptContainer.addChild(new NoticeMessageComponent(title, detail)); |
no test coverage detected