(
msg: Api.Message,
args: string[],
_prefixes: string[],
)
| 4403 | |
| 4404 | async execute( |
| 4405 | msg: Api.Message, |
| 4406 | args: string[], |
| 4407 | _prefixes: string[], |
| 4408 | ): Promise<void> { |
| 4409 | const question = args.join(" ").trim(); |
| 4410 | await this.runQuestion(msg, question); |
| 4411 | } |
| 4412 | |
| 4413 | async askFromReply(msg: Api.Message, trigger?: Api.Message): Promise<void> { |
| 4414 | const replyMsg = await safeGetReplyMessage(msg); |
| 4415 | requireUser(!!replyMsg, "至少需要一条提示"); |
nothing calls this directly
no test coverage detected