(filePath: string)
| 1216 | |
| 1217 | // File system operations |
| 1218 | async readFile(filePath: string): Promise<FileResult> { |
| 1219 | return this.post('/api/fs/read', { filePath }); |
| 1220 | } |
| 1221 | |
| 1222 | async writeFile(filePath: string, content: string): Promise<WriteResult> { |
| 1223 | return this.post('/api/fs/write', { filePath, content }); |
no test coverage detected