(path: string, content: Uint8Array)
| 114 | } |
| 115 | |
| 116 | async writeFileBytes(path: string, content: Uint8Array): Promise<void> { |
| 117 | await this.fs.writeFileBytes(path, content); |
| 118 | } |
| 119 | |
| 120 | async appendFile(path: string, content: string | Uint8Array): Promise<void> { |
| 121 | await this.fs.appendFile(path, content); |
no test coverage detected