(params: { filePath: string; content: string })
| 103 | } |
| 104 | |
| 105 | export async function writeRuntimeProcsFile(params: { filePath: string; content: string }): Promise<void> { |
| 106 | validateConfigFilePath(params.filePath) |
| 107 | await fs.writeFile(params.filePath, params.content, "utf-8") |
| 108 | } |
| 109 | |
| 110 | export async function loadRuntimeEditableProcs(params: { filePath: string; searchPath?: string }): Promise<EditableProcsFile> { |
| 111 | validateConfigFilePath(params.filePath) |
no test coverage detected