(
msg: Api.Message,
text: string,
parseMode: string = "html",
)
| 3777 | |
| 3778 | protected async editMessage( |
| 3779 | msg: Api.Message, |
| 3780 | text: string, |
| 3781 | parseMode: string = "html", |
| 3782 | ): Promise<void> { |
| 3783 | await MessageSender.sendOrEdit(msg, text, { parseMode }); |
| 3784 | } |
| 3785 | } |
| 3786 | |
| 3787 | class ConfigFeature extends BaseFeatureHandler { |
| 3788 | readonly name = "配置管理"; |
nothing calls this directly
no test coverage detected