(
chatId: string,
text: string,
replyTo?: string,
)
| 330 | |
| 331 | private resolveCommand(text: string): BotCommand | null { |
| 332 | return resolveCommand(text); |
| 333 | } |
| 334 | |
| 335 | private async sendLongMessage( |
| 336 | chatId: string, |
| 337 | text: string, |
| 338 | replyTo?: string, |
| 339 | ): Promise<void> { |
| 340 | for (const chunk of this.splitMessage(text)) { |
| 341 | await this.sendSafe(chatId, chunk, replyTo); |
| 342 | } |
| 343 | } |
no test coverage detected