(path: string, content: string | Uint8Array)
| 118 | } |
| 119 | |
| 120 | async appendFile(path: string, content: string | Uint8Array): Promise<void> { |
| 121 | await this.fs.appendFile(path, content); |
| 122 | } |
| 123 | |
| 124 | async readJson(path: string): Promise<unknown> { |
| 125 | return parseJsonFileContent(await this.readFile(path), path); |
nothing calls this directly
no test coverage detected