(path: string, content: string)
| 238 | await provider.writeFile(path, content); |
| 239 | }, |
| 240 | async appendFile(path: string, content: string): Promise<void> { |
| 241 | await provider.appendFile(path, content); |
| 242 | }, |
| 243 | async exists(path: string): Promise<boolean> { |
| 244 | return provider.exists(path); |
| 245 | }, |
nothing calls this directly
no test coverage detected
searching dependent graphs…