(cmd: string, args: string[], timeout = 10000)
| 698 | sticker: "[贴纸]", voice: "[语音]", audio: "[音频]", document: "[文件]", |
| 699 | location: "[位置]", venue: "[地点]", contact: "[联系人]", poll: "[投票]", media: "[媒体]" |
| 700 | }; |
| 701 | return map[kind] || "[媒体]"; |
| 702 | } |
| 703 | |
| 704 | function hasPreviewMedia(msg: Api.Message): boolean { |
| 705 | const kind = getMediaKind(msg); |
| 706 | return kind === "photo" || kind === "sticker" || kind === "animation" || kind === "document"; |
| 707 | } |
no outgoing calls
no test coverage detected