(filePath: string, content: string)
| 1220 | } |
| 1221 | |
| 1222 | async writeFile(filePath: string, content: string): Promise<WriteResult> { |
| 1223 | return this.post('/api/fs/write', { filePath, content }); |
| 1224 | } |
| 1225 | |
| 1226 | async mkdir(dirPath: string): Promise<WriteResult> { |
| 1227 | return this.post('/api/fs/mkdir', { dirPath }); |
no test coverage detected