(timer: ReturnType<typeof setTimeout>)
| 134 | |
| 135 | function clearTrackedTimer(timer: ReturnType<typeof setTimeout>): void { |
| 136 | clearTimeout(timer); |
| 137 | pendingTimers.delete(timer); |
| 138 | } |
| 139 | |
| 140 | // ==================== 消息管理器 ==================== |
| 141 | class MessageManager { |
| 142 | static async smartEdit( |