(path: string)
| 326 | } |
| 327 | |
| 328 | async listArchive(path: string): Promise<StateArchiveEntry[]> { |
| 329 | return listTar(await this.readFileBytes(path)); |
| 330 | } |
| 331 | |
| 332 | async extractArchive( |
| 333 | path: string, |
nothing calls this directly
no test coverage detected