(path: string, content: string)
| 158 | return (await provider.readFile(sp(path), "utf8")) as string; |
| 159 | }, |
| 160 | async writeFile(path: string, content: string): Promise<void> { |
| 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 | }, |