(msg: Api.Message, text: string)
| 562 | } |
| 563 | |
| 564 | private async edit(msg: Api.Message, text: string): Promise<void> { |
| 565 | await msg.edit({ text, parseMode: "html", linkPreview: false }); |
| 566 | } |
| 567 | |
| 568 | private sendViaBot(token: string, chatId: string, text: string): Promise<void> { |
| 569 | return new Promise((resolve, reject) => { |
no outgoing calls
no test coverage detected