(path: string, content: string)
| 110 | } |
| 111 | |
| 112 | async writeFile(path: string, content: string): Promise<void> { |
| 113 | await this.fs.writeFile(path, content); |
| 114 | } |
| 115 | |
| 116 | async writeFileBytes(path: string, content: Uint8Array): Promise<void> { |
| 117 | await this.fs.writeFileBytes(path, content); |
no test coverage detected