(urls: string[])
| 197 | }; |
| 198 | |
| 199 | const importByUrlsLocal = async (urls: string[]): Promise<void> => { |
| 200 | const stat = await importByUrls(urls); |
| 201 | if (stat) showImportResult(stat); |
| 202 | }; |
| 203 | |
| 204 | // 处理 ZIP 文件的 Skill 安装 |
| 205 | const handleZipSkillInstall = async (file: File) => { |
no test coverage detected