(path: string)
| 155 | |
| 156 | return { |
| 157 | async readFile(path: string): Promise<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 | }, |