(filePath: string)
| 26 | }; |
| 27 | |
| 28 | const readFile = async (filePath: string): Promise<string> => { |
| 29 | return await fs.readFile(filePath, "utf-8"); |
| 30 | }; |
| 31 | |
| 32 | const executeStringReplace = async ( |
| 33 | tool: ReturnType<typeof createFileEditReplaceStringTool>, |
no test coverage detected