(msg: Api.Message, trigger?: Api.Message)
| 217 | function longToString(value: any): string { |
| 218 | if (value === undefined || value === null) { |
| 219 | throw new Error("缺少可持久化的 long 值"); |
| 220 | } |
| 221 | return String(value); |
| 222 | } |
| 223 | |
| 224 | function serializeChannel(channel: any): StoredChannel { |
| 225 | if ( |
no test coverage detected