(dirPath: string)
| 181 | * 验证目录是否可作为工作区 |
| 182 | */ |
| 183 | export async function validateWorkspacePath(dirPath: string): Promise<ValidateWorkspaceResult> { |
| 184 | return stores.workspace.validateWorkspacePath(dirPath) |
| 185 | } |
| 186 | |
| 187 | export async function repairWorkspacePath(dirPath: string): Promise<WorkspaceRepairResult> { |
| 188 | const result = await stores.workspace.repairWorkspacePath(dirPath) |
no test coverage detected