(path: string, content: string)
| 235 | return (await provider.readFile(path, "utf8")) as string; |
| 236 | }, |
| 237 | async writeFile(path: string, content: string): Promise<void> { |
| 238 | await provider.writeFile(path, content); |
| 239 | }, |
| 240 | async appendFile(path: string, content: string): Promise<void> { |
| 241 | await provider.appendFile(path, content); |
| 242 | }, |
no test coverage detected
searching dependent graphs…