(text: string)
| 4 | import { safeGetReplyMessage } from "@utils/safeGetMessages"; |
| 5 | |
| 6 | import { htmlEscape } from "@utils/htmlEscape"; |
| 7 | |
| 8 | const dc = async (msg: Api.Message) => { |
| 9 | const args = msg.message.slice(1).split(" ").slice(1); |
| 10 | const param = args[0] || ""; |
| 11 | |
| 12 | // 参数检查 |
| 13 | if (args.length > 1) { |
| 14 | await msg.edit({ |
| 15 | text: "❌ 参数错误,最多只能指定一个用户", |
| 16 | parseMode: "html", |