(text: string)
| 21 | 使用 <code>${commandName} rm/remove</code> 回复一条消息, <code>${commandName} rm/remove 用户ID/用户名</code> 将用户移除管理员 |
| 22 | <code>${commandName} ls/list</code> 查看当前对话所有管理员 |
| 23 | `; |
| 24 | |
| 25 | function codeTag(text: string | number): string { |
| 26 | return `<code>${htmlEscape(String(text))}</code>`; |
| 27 | } |
| 28 | async function formatEntity( |
| 29 | target: any, |
| 30 | mention?: boolean, |
| 31 | throwErrorIfFailed?: boolean |
| 32 | ) { |
| 33 | const client = await getGlobalClient(); |
no outgoing calls
no test coverage detected