(json: boolean | undefined)
| 40 | } |
| 41 | |
| 42 | function printWebSetupStart(json: boolean | undefined): void { |
| 43 | if (json) return; |
| 44 | process.stdout.write('Setting up managed agent-browser backend (downloads if needed)...\n'); |
| 45 | } |
| 46 | |
| 47 | function printWebSetupResult(json: boolean | undefined, status: AgentBrowserToolStatus): void { |
| 48 | if (json) { |
no test coverage detected
searching dependent graphs…