(path: string, content: string)
| 161 | await provider.writeFile(sp(path), content); |
| 162 | }, |
| 163 | async appendFile(path: string, content: string): Promise<void> { |
| 164 | await provider.appendFile(sp(path), content); |
| 165 | }, |
| 166 | async exists(path: string): Promise<boolean> { |
| 167 | return provider.exists(sp(path)); |
| 168 | }, |
nothing calls this directly
no test coverage detected
searching dependent graphs…