| 25 | } |
| 26 | |
| 27 | export interface AgentBlockResult { |
| 28 | finalOutput: string |
| 29 | } |
| 30 | |
| 31 | export function resolveEnvVars(env: Record<string, string> | undefined): Record<string, string> | undefined { |
| 32 | if (!env) return undefined |
nothing calls this directly
no outgoing calls
no test coverage detected