(params)
| 199 | }, |
| 200 | |
| 201 | async removePath(params) { |
| 202 | const record = asRecord(params) |
| 203 | const targetPath = stringValue(record, "path") |
| 204 | await fs.rm(targetPath, { recursive: boolValue(record.recursive), force: boolValue(record.force) }) |
| 205 | return { ok: true, path: targetPath } |
| 206 | }, |
| 207 | |
| 208 | async copyPath(params) { |
| 209 | const record = asRecord(params) |
nothing calls this directly
no test coverage detected