(currentPath?: string[])
| 1124 | |
| 1125 | // 更新当前路径中的消息ID |
| 1126 | const updateCurrentPath = (currentPath?: string[]): string[] => { |
| 1127 | if (!currentPath) return [] |
| 1128 | |
| 1129 | return currentPath.map((oldId) => idMap.get(oldId)).filter(Boolean) as string[] |
| 1130 | } |
| 1131 | |
| 1132 | // 深度复制特定类型的数据 |
| 1133 | const copyTypeSpecificData = () => { |
no outgoing calls
no test coverage detected