(
workingDir: string,
overrides: AgentServerClientOverrides = {},
)
| 29 | * backend); absolute paths pass through. |
| 30 | */ |
| 31 | export async function resolveAbsoluteWorkspacePath( |
| 32 | workingDir: string, |
| 33 | overrides: AgentServerClientOverrides = {}, |
| 34 | ): Promise<string> { |
| 35 | return resolveAbsoluteAgentServerPath(workingDir, overrides); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Build the absolute destination path for a file upload, resolving the |
no test coverage detected