(message: string)
| 274 | const auto = args.auto || args.yolo || args["dangerously-skip-permissions"] |
| 275 | const thinking = interactive ? (args.thinking ?? true) : (args.thinking ?? false) |
| 276 | const die = (message: string): never => { |
| 277 | UI.error(message) |
| 278 | process.exit(1) |
| 279 | } |
| 280 | const dieInteractive = (error: unknown): never => { |
| 281 | if (error instanceof Error && error.message === INTERACTIVE_INPUT_ERROR) { |
| 282 | die(error.message) |
no outgoing calls
no test coverage detected