(path: string)
| 106 | } |
| 107 | |
| 108 | async readFileBytes(path: string): Promise<Uint8Array> { |
| 109 | return this.fs.readFileBytes(path); |
| 110 | } |
| 111 | |
| 112 | async writeFile(path: string, content: string): Promise<void> { |
| 113 | await this.fs.writeFile(path, content); |
no test coverage detected