(host: SlashCommandHost, message: string)
| 360 | } |
| 361 | |
| 362 | function showUndoLimitStatus(host: SlashCommandHost, message: string): void { |
| 363 | host.appendTranscriptEntry({ |
| 364 | id: nextTranscriptId(), |
| 365 | kind: 'status', |
| 366 | turnId: UNDO_LIMIT_STATUS_TURN_ID, |
| 367 | renderMode: 'plain', |
| 368 | content: message, |
| 369 | }); |
| 370 | } |
| 371 | |
| 372 | function undoLimitFromError( |
| 373 | error: unknown, |
no test coverage detected