(path: string)
| 378 | } |
| 379 | |
| 380 | async detectFile(path: string): Promise<StateFileDetection> { |
| 381 | return detectFileFromBytes(path, await this.readFileBytes(path)); |
| 382 | } |
| 383 | |
| 384 | async removeTree(path: string): Promise<void> { |
| 385 | await this.fs.rm(path, { recursive: true, force: true }); |
nothing calls this directly
no test coverage detected